aboutsummaryrefslogtreecommitdiff
path: root/ExamTemplate/Services/Configurations/UserMappings.cs
blob: 13c66338dbb06d3dcfc5e01a72a2e12a7543ffab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using AutoMapper;
using ExamTemplate.Data.Models;
using ExamTemplate.Services.Models;

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