Exemplo n.º 1
0
        private static void AddController(Tuple <Type, Type> controller)
        {
            if (Controladores.ContainsKey(controller.Item1))
            {
                throw new DesenvolvimentoIncorretoException($"There are two controller classes with the same Nome {controller.Item1} - {controller.Item2}. This is not allowed.");
            }

            Controladores.Add(controller.Item1, controller.Item2);
        }