Projekt

Obecné

Profil

Stáhnout (407 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
using AutoMapper;
2
using Core.Entities;
3
using Models.Users;
4
using System;
5
using System.Collections.Generic;
6
using System.Linq;
7
using System.Text;
8
using System.Threading.Tasks;
9

    
10
namespace Core.MapperProfiles
11
{
12
    public class UserProfileEF : Profile
13
    {
14
        public UserProfileEF()
15
        {
16
            CreateMap<User, UserInfo>();
17
            CreateMap<User, DocumentUserInfo>();
18
        }
19
    }
20
}
(4-4/4)