aboutsummaryrefslogtreecommitdiff
path: root/ExamTemplate/Services/Configurations/ServiceUserMappings.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ExamTemplate/Services/Configurations/ServiceUserMappings.cs')
-rw-r--r--ExamTemplate/Services/Configurations/ServiceUserMappings.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/ExamTemplate/Services/Configurations/ServiceUserMappings.cs b/ExamTemplate/Services/Configurations/ServiceUserMappings.cs
deleted file mode 100644
index 787b90f..0000000
--- a/ExamTemplate/Services/Configurations/ServiceUserMappings.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using AutoMapper;
-using ExamTemplate.Data.Models;
-using ExamTemplate.Services.Models.User;
-
-namespace ExamTemplate.Services.Configurations
-{
- public class ServiceUserMappings : Profile
- {
- public ServiceUserMappings()
- {
- CreateMap<RegisterUserServiceModel, User>();
- CreateMap<User, UserServiceModel>();
- }
- }
-}