32 lines
712 B
C#
32 lines
712 B
C#
namespace Microsoft.eShopOnContainers.Services.Ordering.Application.Commands
|
|
{
|
|
using System;
|
|
using MediatR;
|
|
|
|
public class NewOrderRequest
|
|
:IAsyncRequest<bool>
|
|
{
|
|
public string City { get; set; }
|
|
|
|
public string Street { get; set; }
|
|
|
|
public string State { get; set; }
|
|
|
|
public string Country { get; set; }
|
|
|
|
public string ZipCode { get; set; }
|
|
|
|
public string CardNumber { get; set; }
|
|
|
|
public string CardHolderName { get; set; }
|
|
|
|
public DateTime CardExpiration { get; set; }
|
|
|
|
public string CardSecurityNumber { get; set; }
|
|
|
|
public int CardTypeId { get; set; }
|
|
|
|
public string Buyer { get; set; }
|
|
}
|
|
}
|