using Ropin.Inspection.Model; using Ropin.Inspection.Model.Entities; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Repository { public interface ITsysLicenseRepository : IRepositoryBase, IRepositoryBaseById { IList GetALLLicenseType(); Task CreateLicenseTypeAsync(TSYS_LicenseType entity); void UpdateLicenseType(TSYS_LicenseType entity); TSYS_LicenseType GetLicenseTypeByCode(string code); Task GetLicensePrivByType(string typeCode); Task> GetLicensePrivsByTypeIdAsync(string typeId); } }