1234567891011121314151617181920 |
- using Ropin.Inspection.Model;
- using Ropin.Inspection.Model.ViewModel;
- using Ropin.Inspection.Service.Interface;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Service.SYS.Interface
- {
- public interface ITsysRoleService : IBaseService<TsysRoleViewModel>, IBaseServiceById<TsysRoleViewModel, Guid>
- {
- Task CreateAsync(TsysRoleCreateViewModel viewModel);
- Task<IEnumerable<TsysRoleViewModel>> GetAllAsync();
- Task<IEnumerable<TsysRoleOrgLicenseViewModel>> GetBylicenseCodeAsync(string licenseCode, string status);
- Task UpdateAsync(Guid id, TsysRoleUpdateViewModel updateModel);
- }
- }
|