You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
703 B
C#

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<GSnPicture>
{
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);
}
}