Exemple #1
0
 public async Task <IActionResult> DeleteRow(string customerType, string customerId)
 {
     try
     {
         TableClient.DeleteRecordinTable(customerType, customerId);
     }
     catch (Exception ex)
     {
         logger.LogException("DeleteRow", ex, ex.ToString());
         throw;
     }
     return(Ok());
 }