IDepartmentService.cs 422 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. namespace GxPress.Service.Interface.Department
  6. {
  7. public interface IDepartmentService : IService
  8. {
  9. /// <summary>
  10. /// 删除部门包括下面的子集和用户
  11. /// </summary>
  12. /// <param name="id"></param>
  13. /// <returns></returns>
  14. Task<bool> DeleteAsync(int id);
  15. }
  16. }