18 lines
387 B
C#
18 lines
387 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using AutoMapper;
|
|
using SessionCompanion.Database.Tables;
|
|
using SessionCompanion.ViewModels.UserViewModels;
|
|
|
|
namespace SessionCompanion.Services.Profiles
|
|
{
|
|
public class UserProfile : Profile
|
|
{
|
|
public UserProfile()
|
|
{
|
|
CreateMap<UserViewModel, User>().ReverseMap();
|
|
}
|
|
}
|
|
}
|