You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
463 B
18 lines
463 B
3 years ago
|
using AutoMapper;
|
||
3 years ago
|
using TenantManagement.Api.DDD.Contracts.Dtos;
|
||
|
using TenantManagement.Api.DDD.Contracts.Inputs;
|
||
3 years ago
|
using TenantManagement.Api.DDD.Domain.Entites;
|
||
|
|
||
3 years ago
|
namespace TenantManagement.Api.DDD.Contracts;
|
||
3 years ago
|
|
||
3 years ago
|
public class TenantManagementMappingProfile : Profile
|
||
3 years ago
|
{
|
||
3 years ago
|
public TenantManagementMappingProfile()
|
||
3 years ago
|
{
|
||
|
CreateMap<TenantCreateInput, Tenant>();
|
||
|
CreateMap<TenantUpdateInput, Tenant>();
|
||
|
CreateMap<Tenant, TenantDto>();
|
||
|
|
||
|
}
|
||
|
}
|