UserProfile.cs 413 B

123456789101112131415161718
  1. using AutoMapper;
  2. using ProductionLineMonitor.Core.Dtos;
  3. using ProductionLineMonitor.Core.Models;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Text;
  7. namespace ProductionLineMonitor.Core.Profiles
  8. {
  9. public class UserProfile : Profile
  10. {
  11. public UserProfile()
  12. {
  13. CreateMap<User, UserDto>();
  14. CreateMap<UserCreateOrUpdateDto, User>();
  15. }
  16. }
  17. }