Advertisement
Guest User

Untitled

a guest
Dec 7th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. using System.Linq;
  2. using AutoMapper;
  3. using Stations.DataProcessor.Dto.Import;
  4. using Stations.Models;
  5.  
  6. namespace Stations.App
  7. {
  8. public class StationsProfile : Profile
  9. {
  10. // Configure your AutoMapper here if you wish to use it. If not, DO NOT DELETE THIS CLASS
  11. public StationsProfile()
  12. {
  13. CreateMap<StationDto, Station>();
  14. CreateMap<SeatingClassDto, SeatingClass>();
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement