ITenantsApplicationService.cs 272 B

12345678910
  1. using WePlatform.BaseSystem.Tenants.Dto;
  2. using IwbZero.AppServiceBase;
  3. namespace WePlatform.BaseSystem.Tenants
  4. {
  5. public interface ITenantsAppService : IIwbZeroAsyncCrudAppService<TenantDto, int, IwbPagedRequestDto, TenantCreateDto, TenantUpdateDto>
  6. {
  7. }
  8. }