예제 #1
0
 public void DeleteCustomer(int id)
 {
     try
     {
         FakeDB.DeleteCustomer(id);
     }
     catch
     {
         throw new HttpResponseException(HttpStatusCode.BadRequest);
     }
 }