2016-11-24 14:58:37 +01:00
|
|
|
|
using System;
|
2016-12-14 18:23:57 +01:00
|
|
|
|
using System.Collections.Generic;
|
2016-11-24 14:58:37 +01:00
|
|
|
|
|
|
|
|
|
namespace Microsoft.eShopOnContainers.Services.Ordering.API.Models
|
|
|
|
|
{
|
|
|
|
|
public class NewOrderViewModel
|
|
|
|
|
{
|
|
|
|
|
public string ShippingCity { get; set; }
|
|
|
|
|
|
|
|
|
|
public string ShippingStreet { get; set; }
|
|
|
|
|
|
|
|
|
|
public string ShippingState { get; set; }
|
|
|
|
|
|
|
|
|
|
public string ShippingCountry { get; set; }
|
|
|
|
|
|
|
|
|
|
public string CardType { get; set; }
|
|
|
|
|
|
|
|
|
|
public string CardNumber { get; set; }
|
|
|
|
|
|
|
|
|
|
public string CardHolderName { get; set; }
|
|
|
|
|
|
|
|
|
|
public DateTime CardExpiration { get; set; }
|
|
|
|
|
|
|
|
|
|
public string CardSecurityNumber { get; set; }
|
2016-12-14 18:23:57 +01:00
|
|
|
|
|
|
|
|
|
public List<OrderItemViewModel> Items { get; set; }
|
|
|
|
|
|
|
|
|
|
public NewOrderViewModel()
|
|
|
|
|
{
|
|
|
|
|
Items = new List<OrderItemViewModel>();
|
|
|
|
|
}
|
2016-11-24 14:58:37 +01:00
|
|
|
|
}
|
|
|
|
|
}
|