using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using Domain; namespace Dao { public interface IHostFaultsRepository : IRepository { IQueryable LoadAllByPage(out long total, int page, int rows, string order, string sort, int hotelID); HostFaults Get(int hostID, string address); IList LoadCurrentHostFaultStatistics(int hotelID, IList groupIDs, int type); //IList LoadCurrentHostFault(int hostID); IList LoadHostFault(int hostID); void DeleteByAddress(string address, int roomTypeID); void DeteleByHostID(int hostID); } }