private static void TestATMCDM()
 {
     try
     {
         var svc = new AMIntegrationService.AMIntegration();
         var req = new GetListofAMCustomerRequest();
         req.ReferenceID = "465656";
         req.Channel     = "IB";
         var resp = svc.GetListofAMCustomer(req);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
        private static void TestATMCDM()
        {
            try
            {
                var svc = new AMIntegration();
                var req = new GetListofAMCustomerRequest();
                req.ReferenceID = "465656";
                req.Channel     = "IB";

                var resp = svc.GetListofAMCustomer(req, new DateTime(2001, 1, 1), new DateTime(2019, 10, 10));
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }