|
@ -1,12 +1,12 @@ |
|
|
namespace Microsoft.eShopOnContainers.Services.Ordering.Domain.AggregatesModel.OrderAggregate |
|
|
namespace Microsoft.eShopOnContainers.Services.Ordering.Domain.AggregatesModel.OrderAggregate |
|
|
{ |
|
|
{ |
|
|
using global::Ordering.Domain.Exceptions; |
|
|
|
|
|
using Seedwork; |
|
|
|
|
|
using System; |
|
|
|
|
|
using System.Collections.Generic; |
|
|
|
|
|
using System.Linq; |
|
|
|
|
|
|
|
|
using global::Ordering.Domain.Exceptions; |
|
|
|
|
|
using Microsoft.eShopOnContainers.Services.Ordering.Domain.SeedWork; |
|
|
|
|
|
using System; |
|
|
|
|
|
using System.Collections.Generic; |
|
|
|
|
|
using System.Linq; |
|
|
|
|
|
|
|
|
public class OrderStatus |
|
|
|
|
|
|
|
|
public class OrderStatus |
|
|
: Enumeration |
|
|
: Enumeration |
|
|
{ |
|
|
{ |
|
|
public static OrderStatus Submitted = new OrderStatus(1, nameof(Submitted).ToLowerInvariant()); |
|
|
public static OrderStatus Submitted = new OrderStatus(1, nameof(Submitted).ToLowerInvariant()); |
|
|