using Estsh.Core.Model.Result; using Estsh.Core.Models; using Estsh.Core.Util; using System.Collections; using System.Data; namespace Estsh.Core.Services.IServices { public interface IPictureDefineService : IBaseService { public Hashtable getHomeMenuList(SysEmp userInfo, string menuId); public Hashtable getMainMenuList(SysEmp userInfo, string menuId); public Hashtable getChildMenuList(SysEmp userInfo, string menuId, string rootPath); public Hashtable getNoNTabChildMenuList(SysEmp userInfo, string menuId, string rootPath); public Hashtable getPictureListByPage(String pictureName, Pager pager, String direction, String sort); } }