using System; using System.Collections.Generic; using System.Linq; using System.Text; using Domain; namespace Dao { public interface IAppMenuRepository : IRepository { IQueryable LoadAllByPage(out long total, int page, int rows, string order, string sort); IQueryable LoadAll(int type, int hotelID); } }