public List <Supporter> GetSupporters()
 {
     using (var client = new RemeeSupportClient())
     {
         return(client.GetSupporters().ToList());
     }
 }
        public List <Comment> GetComments(int caseId)
        {
            if (caseId <= 0)
            {
                throw new ArgumentException("Case ID could not be found");
            }
            //client = new RemeeSupportClient();

            using (var client = new RemeeSupportClient())
            {
                return(client.GetComments(caseId).ToList());
            }
        }