21 lines
497 B
C#
21 lines
497 B
C#
using AutoMapper;
|
|
using SessionCompanion.Database.Tables;
|
|
using SessionCompanion.ViewModels.AlignmentViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SessionCompanion.Services.Profiles
|
|
{
|
|
class AlignmentProfile : Profile
|
|
{
|
|
public AlignmentProfile()
|
|
{
|
|
CreateMap<AlignmentViewModel, Alignment>();
|
|
CreateMap<Alignment, AlignmentViewModel>();
|
|
}
|
|
}
|
|
}
|