15 lines
370 B
C#
15 lines
370 B
C#
|
using AutoMapper;
|
|||
|
using SessionCompanion.Database.Tables;
|
|||
|
using SessionCompanion.ViewModels.OtherEquipmentViewModels;
|
|||
|
|
|||
|
namespace SessionCompanion.Services.Profiles
|
|||
|
{
|
|||
|
public class OtherEquipmentProfile : Profile
|
|||
|
{
|
|||
|
public OtherEquipmentProfile()
|
|||
|
{
|
|||
|
CreateMap<OtherEquipmentViewModel, OtherEquipment>().ReverseMap();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|