Browse Source

Update AbpTenantManagementApplicationMapperlyMappers.cs

pull/23623/head
Enis Necipoglu 11 months ago
parent
commit
a0551df0c0
No known key found for this signature in database GPG Key ID: 1EC55E13241E1680
  1. 25
      modules/tenant-management/src/Volo.Abp.TenantManagement.Application/Volo/Abp/TenantManagement/AbpTenantManagementApplicationMapperlyMappers.cs

25
modules/tenant-management/src/Volo.Abp.TenantManagement.Application/Volo/Abp/TenantManagement/AbpTenantManagementApplicationMapperlyMappers.cs

@ -3,31 +3,10 @@ using Volo.Abp.Mapperly;
namespace Volo.Abp.TenantManagement.Application.Volo.Abp.TenantManagement;
[Mapper]
public partial class TenantToTenantDtoMapper
[Mapper(RequiredMappingStrategy = RequiredMappingStrategy.Target)]
public partial class TenantToTenantDtoMapper
: MapperBase<Tenant, TenantDto>
{
[MapperIgnoreSource(nameof(Tenant.EntityVersion))]
[MapperIgnoreSource(nameof(Tenant.ConnectionStrings))]
[MapperIgnoreSource(nameof(Tenant.IsDeleted))]
[MapperIgnoreSource(nameof(Tenant.NormalizedName))]
[MapperIgnoreSource(nameof(Tenant.DeleterId))]
[MapperIgnoreSource(nameof(Tenant.DeletionTime))]
[MapperIgnoreSource(nameof(Tenant.LastModificationTime))]
[MapperIgnoreSource(nameof(Tenant.LastModifierId))]
[MapperIgnoreSource(nameof(Tenant.CreationTime))]
[MapperIgnoreSource(nameof(Tenant.CreatorId))]
public override partial TenantDto Map(Tenant source);
[MapperIgnoreSource(nameof(Tenant.EntityVersion))]
[MapperIgnoreSource(nameof(Tenant.ConnectionStrings))]
[MapperIgnoreSource(nameof(Tenant.IsDeleted))]
[MapperIgnoreSource(nameof(Tenant.NormalizedName))]
[MapperIgnoreSource(nameof(Tenant.DeleterId))]
[MapperIgnoreSource(nameof(Tenant.DeletionTime))]
[MapperIgnoreSource(nameof(Tenant.LastModificationTime))]
[MapperIgnoreSource(nameof(Tenant.LastModifierId))]
[MapperIgnoreSource(nameof(Tenant.CreationTime))]
[MapperIgnoreSource(nameof(Tenant.CreatorId))]
public override partial void Map(Tenant source, TenantDto destination);
}
Loading…
Cancel
Save