Ejemplo n.º 1
0
        private bool CheckContraints(FieldController controller)
        {
            try
            {
                controller.CheckConstraints();
            }
            catch (FieldException exc)
            {
                NotificationHelper.ShowNotification("Error", exc.CustomMessage);

                return(false);
            }
            return(true);
        }