AssemblyCSharp.Definitions.SetupRegistry C# (CSharp) Метод

SetupRegistry() приватный статический Метод

private static SetupRegistry ( SMDefinitions model ) : string[]>.Dictionary
model SMDefinitions
Результат string[]>.Dictionary
        private static Dictionary<IDefinitionsRegistry, string[]> SetupRegistry(SMDefinitions model)
        {
            var registry = new Dictionary<IDefinitionsRegistry, string[]> {
                { model.Ingredients, new[] { "Ingredients" } },
                { model.Doughs, new[] { "DoughRecipes" } },
                { model.Sauces, new[] { "SauceRecipes" } },
                { model.Toppings, new[] { "ToppingRecipes" } },
                { model.Pizzas, new[] { "PizzaRecipes" } },

            };
            return registry;
        }