public ActionResult AddCustomer(CustomerDetails customerDetails)
 {
     _business.AddCustomer(customerDetails);
     return(Ok("Success"));
 }