ITenantService.cs
533 Bytes
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>
{
/// <summary>
/// 在租户独立库执行 CodeFirst(建库 + 业务表,不含 DefaultTenantTable 表)
/// </summary>
Task InitAsync(Guid id);
}
}