1 2 3 4 5 6 7 8 9
using Yi.Framework.Ddd.Application.Contracts; using Yi.Framework.TenantManagement.Application.Contracts.Dtos; namespace Yi.Framework.TenantManagement.Application.Contracts { public interface ITenantService:IYiCrudAppService< TenantGetOutputDto, TenantGetListOutputDto, Guid, TenantGetListInput, TenantCreateInput, TenantUpdateInput> { } }