ITsysRoleService.cs 719 B

1234567891011121314151617181920
  1. using Ropin.Inspection.Model;
  2. using Ropin.Inspection.Model.ViewModel;
  3. using Ropin.Inspection.Service.Interface;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace Ropin.Inspection.Service.SYS.Interface
  10. {
  11. public interface ITsysRoleService : IBaseService<TsysRoleViewModel>, IBaseServiceById<TsysRoleViewModel, Guid>
  12. {
  13. Task CreateAsync(TsysRoleCreateViewModel viewModel);
  14. Task<IEnumerable<TsysRoleViewModel>> GetAllAsync();
  15. Task<IEnumerable<TsysRoleOrgLicenseViewModel>> GetBylicenseCodeAsync(string licenseCode, string status);
  16. Task UpdateAsync(Guid id, TsysRoleUpdateViewModel updateModel);
  17. }
  18. }