aboutsummaryrefslogtreecommitdiff
path: root/ExamTemplate/Services/Configurations/UserMappings.cs
blob: 1852139c4b8b64a8900531fb47963d2771765982 (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;

namespace ExamTemplate.Services.Configurations
{
	public class UserMappings : Profile
	{
		public UserMappings()
		{
			CreateMap<RegisterUserServiceModel, User>();
			CreateMap<User, UserServiceModel>();
		}
	}
}