Advertisement
Guest User

Untitled

a guest
Sep 26th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public class ProductToOrderConverter : ITypeConverter<Product, OrderDetail>
  2. {
  3. public OrderDetail Convert(ResolutionContext context)
  4. {
  5. if (context.IsSourceValueNull) return null;
  6. var p = context.SourceValue as Product;
  7.  
  8. return new OrderDetail()
  9. {
  10. // ...
  11. };
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement