19 lines
476 B
C#
19 lines
476 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using AutoMapper;
|
|||
|
using SessionCompanion.Database.Tables;
|
|||
|
using SessionCompanion.ViewModels.IntelligenceViewModels;
|
|||
|
|
|||
|
namespace SessionCompanion.Services.Profiles
|
|||
|
{
|
|||
|
public class IntelligenceProfile : Profile
|
|||
|
{
|
|||
|
public IntelligenceProfile()
|
|||
|
{
|
|||
|
CreateMap<IntelligenceViewModel, Intelligence>();
|
|||
|
CreateMap<Intelligence, IntelligenceViewModel>();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|