20 lines
603 B
C#
20 lines
603 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DDD
|
|
{
|
|
public static class RestaurantCookSolvers
|
|
{
|
|
public static Dictionary<RestaurantCookType, Type> TypeToManagementSolver = new()
|
|
{
|
|
{ RestaurantCookType.OpenCookUi, typeof(RestaurantCookSolver_OpenCookUi) },
|
|
};
|
|
}
|
|
public class RestaurantCookSolver : RestaurantSubsystemSolver<RestaurantCookType>
|
|
{
|
|
protected override Dictionary<RestaurantCookType, Type> GetSubsystemSolverTypeMappings()
|
|
{
|
|
return RestaurantCookSolvers.TypeToManagementSolver;
|
|
}
|
|
}
|
|
} |