17 lines
No EOL
454 B
C#
17 lines
No EOL
454 B
C#
using SurveyBackend.Core.Models;
|
|
using SurveyBackend.Core.Services;
|
|
using SurveyBackend.DTOs;
|
|
using SurveyBackend.Infrastructure.Services;
|
|
|
|
namespace SurveyBackend.Mappers.UserDTOs;
|
|
|
|
public static class UserRegistrationMapper
|
|
{
|
|
public static User UserRegistrationToModel(UserRegistrationDto dto) => new User
|
|
{
|
|
Email = dto.Email,
|
|
FirstName = dto.FirstName,
|
|
LastName = dto.LastName,
|
|
Password = dto.Password,
|
|
};
|
|
} |