19 lines
328 B
C#
19 lines
328 B
C#
using AutoMapper;
|
|
using Common.Dtos.Company;
|
|
using Hushian.Domain.Entites;
|
|
|
|
|
|
|
|
namespace Hushian.Application
|
|
{
|
|
public class MappingProfile : Profile
|
|
{
|
|
|
|
public MappingProfile(/*IUserService userService*/)
|
|
{
|
|
CreateMap<ReadANDUpdate_CompanyDto, Company>().ReverseMap(); ;
|
|
|
|
|
|
}
|
|
}
|