aboutsummaryrefslogtreecommitdiff
path: root/ExamTemplate/Services/ExamTemplate.Services/Configurations/ServiceUserMappings.cs
blob: 787b90f79f5f4efbacca398add4e901af66b0e95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>();
		}
	}
}