blob: 9ccb7d74d1447f1edbd3ed658994ecfbba305fb1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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>();
}
}
}
|