aboutsummaryrefslogtreecommitdiff
path: root/ExamTemplate/Web/Configurations/UserMappings.cs
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-05-07 15:27:34 +0300
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-05-07 15:27:34 +0300
commit5f2abdf275c3765290ee7d6728842cba6d3af184 (patch)
treec9393ac6375db139f2d8388fc03ed1c9bfe2405b /ExamTemplate/Web/Configurations/UserMappings.cs
parent7470da2719a404b344fec4d6b2fefd92f4ce22a5 (diff)
downloadit-kariera-exam-template-5f2abdf275c3765290ee7d6728842cba6d3af184.tar
it-kariera-exam-template-5f2abdf275c3765290ee7d6728842cba6d3af184.tar.gz
it-kariera-exam-template-5f2abdf275c3765290ee7d6728842cba6d3af184.zip
Implemented editing user
Diffstat (limited to 'ExamTemplate/Web/Configurations/UserMappings.cs')
-rw-r--r--ExamTemplate/Web/Configurations/UserMappings.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/ExamTemplate/Web/Configurations/UserMappings.cs b/ExamTemplate/Web/Configurations/UserMappings.cs
index 6a98477..1bba602 100644
--- a/ExamTemplate/Web/Configurations/UserMappings.cs
+++ b/ExamTemplate/Web/Configurations/UserMappings.cs
@@ -11,6 +11,8 @@ namespace ExamTemplate.Services.Configurations
CreateMap<RegisterUserViewModel, RegisterUserServiceModel>();
CreateMap<LoginUserViewModel, LoginUserServiceModel>();
CreateMap<UserServiceModel, UserViewModel>();
+ CreateMap<UserServiceModel, EditUserViewModel>();
+ CreateMap<EditUserViewModel, EditUserServiceModel>();
}
}
}