Example #1
0
        public override int GetAmountOfRecords()
        {
            int amount = 0;

            try
            {
                using (var service = new DictionaryServiceClient())
                {
                    amount = service.GetAmountOfStages();
                }
            }
            catch (Exception e)
            {
                throw;
            }

            return(amount);
        }