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
601 B
C#
19 lines
601 B
C#
using Estsh.Core.Models;
|
|
using Estsh.Core.Services;
|
|
using Estsh.Core.Util;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.IServices
|
|
{
|
|
public interface IDeptService : IBaseService<SysDept>
|
|
{
|
|
public Hashtable getDeptListByPage(string deptName,string enabled, Pager pager, String direction, String sort);
|
|
public int saveDept(SysDept dept);
|
|
public int updateDept(SysDept dept);
|
|
public List<SysDept> getDept(String deptId);
|
|
public int deleteDept(String ids);
|
|
public int EnableData(String ids);
|
|
public int DisableData(String ids);
|
|
}
|
|
}
|