示例#1
0
 public static ShoppingCartItem MappingtoshoppingcartDto(this  ShoppingCartItemdto shoppingcartdto)
 {
     return(new  ShoppingCartItem
     {
         ShoppingCartItemId = shoppingcartdto.ShoppingCartItemId,
         Amount = shoppingcartdto.Amount,
         ShoppingCartId = shoppingcartdto.ShoppingCartId
     });
 }
示例#2
0
 public static void MappingshoppingcartDto(this  ShoppingCartItemdto shoppingcartdto, ShoppingCartItem shoppingcart)
 {
     shoppingcartdto.ShoppingCartItemId = shoppingcart.ShoppingCartItemId;
     shoppingcartdto.Amount             = shoppingcart.Amount;
     shoppingcartdto.ShoppingCartId     = shoppingcart.ShoppingCartId;
 }