19 lines
448 B
C#
19 lines
448 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using AutoMapper;
|
|
using SessionCompanion.Database.Tables;
|
|
using SessionCompanion.ViewModels.StrengthViewModels;
|
|
|
|
namespace SessionCompanion.Services.Profiles
|
|
{
|
|
public class StrengthProfile : Profile
|
|
{
|
|
public StrengthProfile()
|
|
{
|
|
CreateMap<StrengthViewModel, Strength>();
|
|
CreateMap<Strength, StrengthViewModel>();
|
|
}
|
|
}
|
|
}
|