using Dapper; using Estsh.Core.Models; using Estsh.Core.Repositories; using System.Collections; namespace Estsh.Core.Repository.IRepositories { public interface IPictureDefineRepository : IBaseRepository { public List getListByUser(int empId); public Hashtable getHomeMenuListByUser(int empId, string menuId); public List getMainMenuListByUser(int empId, string menuId); public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy); } }