コード例 #1
0
 public string AddNewCustomer([FromBody] CustomerLogin customer)
 {
     _repository.AddCustomer(customer);
     return("New Customer Login has been created");
 }