Esempio n. 1
0
 public string InsertCustomer([FromBody] Customer customer)
 {
     try
     {
         var stat = (stRepo.InsertEntityInCustomerTable(customer)) ? "Cusotmer Inserted into Storage." : "Unable to Insert";
         return(stat);
     }
     catch (Exception ex)
     {
         Console.WriteLine("Exception occured: {0}", ex.Message);
         return(ex.Message);
     }
 }