using AutoMapper; using Diligent.WebAPI.Data.Entities; using Diligent.WebAPI.Host.MongoDTOs.InsuranceCompanyMongo; namespace Diligent.WebAPI.Host.Mapper { public class CompanyMappingProfile : Profile { public CompanyMappingProfile() { #region Models to DTOs //sql //mongo CreateMap(); #endregion #region DTOs to Models //sql //mongo CreateMap(); #endregion } } }