Guest User

Untitled

a guest
Jun 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public interface IWebStoreOrderManager : IServiceContractBase
  2. {
  3. WebStoreOrderResponse SubmitOrder(Cart cart, PaymentInstrument paymentInstrument);
  4. }
  5.  
  6. public class Cart
  7. {
  8. public int Id { get; set; }
  9. public CartItem[] CartItems { get; set;}
  10. }
  11.  
  12. public class CartItems
  13. {
  14. }
Add Comment
Please, Sign In to add comment