Projekt

Obecné

Profil

Stáhnout (382 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
using AutoMapper;
2
using Core.Entities;
3
using Models.Documents;
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 DocumentProfileEF : Profile
13
    {
14
        public DocumentProfileEF()
15
        {
16
            CreateMap<Document, DocumentListInfo>();
17
        }
18
    }
19
}
(1-1/4)