Example #1
0
        private void checkIsAccepting()
        {
            bool accepted = false;

            accepted = FunctionalityFromRepository.GetIsAccepting(GraphID, SimID);
            if (accepted)
            {
                showButton(false);
            }
            else
            {
                showButton(true);
            }
        }