2023-08-15 22:52:30 -05:00
|
|
|
|
namespace DamageAssesment.Api.Surveys.Profiles
|
|
|
|
|
{
|
|
|
|
|
public class SurveysProfile:AutoMapper.Profile
|
|
|
|
|
{
|
|
|
|
|
public SurveysProfile() {
|
2023-09-08 14:40:06 -05:00
|
|
|
|
CreateMap<Db.Survey, Models.MultiLanSurvey>();
|
2023-08-15 22:52:30 -05:00
|
|
|
|
CreateMap<Models.Survey, Db.Survey>();
|
2023-09-08 14:40:06 -05:00
|
|
|
|
CreateMap<Db.SurveyTranslation, Models.SurveyTranslation>();
|
|
|
|
|
CreateMap<Models.SurveyTranslation, Db.SurveyTranslation>();
|
2023-08-15 22:52:30 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|