Browse Source

Fix merge issue

pull/126/head
dsanz 8 years ago
parent
commit
f12f0c4ffa
1 changed files with 10 additions and 2 deletions
  1. +10
    -2
      test/Services/IntegrationTests/Services/Ordering/OrderingScenarios.cs

+ 10
- 2
test/Services/IntegrationTests/Services/Ordering/OrderingScenarios.cs View File

@ -51,6 +51,10 @@
} }
} }
//public CreateOrderCommand(string city, string street, string state, string country, string zipcode,
// string cardNumber, string cardHolderName, DateTime cardExpiration,
// string cardSecurityNumber, int cardTypeId, int paymentId, int buyerId) : this()
string BuildOrder() string BuildOrder()
{ {
var order = new CreateOrderCommand( var order = new CreateOrderCommand(
@ -63,7 +67,9 @@
country: "USA", country: "USA",
state: "WA", state: "WA",
street: "One way", street: "One way",
zipcode: "zipcode"
zipcode: "zipcode",
paymentId: 1,
buyerId: 1
); );
order.AddOrderItem(new OrderItemDTO() order.AddOrderItem(new OrderItemDTO()
@ -89,7 +95,9 @@
country: "USA", country: "USA",
state: "WA", state: "WA",
street: "One way", street: "One way",
zipcode: "zipcode"
zipcode: "zipcode",
buyerId: 1,
paymentId:1
); );
return JsonConvert.SerializeObject(order); return JsonConvert.SerializeObject(order);


Loading…
Cancel
Save