| 123456789101112131415161718192021222324 |
- using AutoMapper;
- using DutchTreat.Data.Entities;
- using DutchTreat.ViewModels;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace DutchTreat.Data
- {
- public class DutchMappingProfile : Profile
- {
- public DutchMappingProfile()
- {
- CreateMap<Order, OrderViewModel>()
- .ForMember(o => o.OrderId, ex => ex.MapFrom(o => o.Id))
- .ReverseMap();
- CreateMap<OrderItem, OrderItemViewModel>()
- .ReverseMap()
- .ForMember(m => m.Product, opt => opt.Ignore());
- }
- }
- }
|