aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Configurations/Mapping/RoleMappings.cs
blob: 66ae8e338f129618b7b8e9f3a7af862fcef5ca9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using AutoMapper;
using DevHive.Web.Models.Identity.Role;
using DevHive.Services.Models.Identity.Role;

namespace DevHive.Web.Configurations.Mapping
{
	public class RoleMappings : Profile
	{
		public RoleMappings()
		{
			CreateMap<CreateRoleWebModel, RoleServiceModel>();
			CreateMap<UpdateRoleWebModel, RoleServiceModel>();

			CreateMap<RoleServiceModel, RoleWebModel>();
			CreateMap<RoleWebModel, RoleServiceModel>();
		}
	}
}