using System; using System.Collections.Generic; namespace DDD { public static class RestaurantCookSolvers { public static Dictionary TypeToManagementSolver = new() { { RestaurantCookType.OpenCookUi, typeof(RestaurantCookSolver_OpenCookUi) }, }; } public class RestaurantCookSolver : RestaurantSubsystemSolver { protected override Dictionary GetSubsystemSolverTypeMappings() { return RestaurantCookSolvers.TypeToManagementSolver; } } }