public string AddNewCustomer([FromBody] CustomerLogin customer)
 {
     _repository.AddCustomer(customer);
     return("New Customer Login has been created");
 }