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.
16 lines
553 B
C#
16 lines
553 B
C#
using Dapper;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Repositories;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.Repository.IRepositories
|
|
{
|
|
public interface IPictureDefineRepository : IBaseRepository<GSnPicture>
|
|
{
|
|
public List<SysWebMenu> getListByUser(int empId);
|
|
public Hashtable getHomeMenuListByUser(int empId, string menuId);
|
|
public List<SysWebMenu> getMainMenuListByUser(int empId, string menuId);
|
|
public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
}
|
|
}
|