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.
19 lines
643 B
C#
19 lines
643 B
C#
using Estsh.Core.Models;
|
|
using Estsh.Core.Repositories;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.IRepositories
|
|
{
|
|
public interface IDeptRepository : IBaseRepository<SysDept>
|
|
{
|
|
public List<SysDept> getList(string strWhere, string filedOrder);
|
|
public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
public int saveDept(SysDept dept);
|
|
public int updateDept(SysDept dept);
|
|
public int deleteDept(String deptId);
|
|
public Task<List<SysDept>> GetAll();
|
|
public int EnableData(String Ids);
|
|
public int DisableData(String Ids);
|
|
}
|
|
}
|