58 lines
2.0 KiB
C#
58 lines
2.0 KiB
C#
namespace Microsoft.eShopOnContainers.Services.Ordering.Domain.AggregatesModel.OrderAggregate
|
|
{
|
|
using global::Ordering.Domain.Exceptions;
|
|
using Seedwork;
|
|
using SeedWork;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
public class OrderStatus
|
|
: Enumeration
|
|
{
|
|
public static OrderStatus Submited = new OrderStatus(1, nameof(Submited).ToLowerInvariant());
|
|
public static OrderStatus AwaitingValidation = new OrderStatus(2, nameof(AwaitingValidation).ToLowerInvariant());
|
|
public static OrderStatus StockConfirmed = new OrderStatus(3, nameof(StockConfirmed).ToLowerInvariant());
|
|
public static OrderStatus Paid = new OrderStatus(4, nameof(Paid).ToLowerInvariant());
|
|
public static OrderStatus Shipped = new OrderStatus(5, nameof(Shipped).ToLowerInvariant());
|
|
public static OrderStatus Cancelled = new OrderStatus(6, nameof(Cancelled).ToLowerInvariant());
|
|
|
|
protected OrderStatus()
|
|
{
|
|
}
|
|
|
|
public OrderStatus(int id, string name)
|
|
: base(id, name)
|
|
{
|
|
}
|
|
|
|
public static IEnumerable<OrderStatus> List() =>
|
|
new[] { Submited, AwaitingValidation, StockConfirmed, Paid, Shipped, Cancelled };
|
|
|
|
public static OrderStatus FromName(string name)
|
|
{
|
|
var state = List()
|
|
.SingleOrDefault(s => String.Equals(s.Name, name, StringComparison.CurrentCultureIgnoreCase));
|
|
|
|
if (state == null)
|
|
{
|
|
throw new OrderingDomainException($"Possible values for OrderStatus: {String.Join(",", List().Select(s => s.Name))}");
|
|
}
|
|
|
|
return state;
|
|
}
|
|
|
|
public static OrderStatus From(int id)
|
|
{
|
|
var state = List().SingleOrDefault(s => s.Id == id);
|
|
|
|
if (state == null)
|
|
{
|
|
throw new OrderingDomainException($"Possible values for OrderStatus: {String.Join(",", List().Select(s => s.Name))}");
|
|
}
|
|
|
|
return state;
|
|
}
|
|
}
|
|
}
|