aboutsummaryrefslogtreecommitdiff
path: root/ExamTemplate/Services/Configurations/UserMappings.cs
blob: acb3ae451a4aee97b310c2491a65622f83023a3a (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 UserMappings : Profile
	{
		public UserMappings()
		{
			CreateMap<RegisterUserServiceModel, User>();
			CreateMap<User, UserServiceModel>();
		}
	}
}