Example #1
0
        public Case GetCase(int id)
        {
            if (id < 1)
            {
                throw new ArgumentException("Id can not be less than 1");
            }

            return(client.GetCase(id));
        }