예제 #1
0
 public IHttpActionResult DeleteExampleById(string Id)
 {
     try
     {
         _exampleService.DeleteExampleById(Id);
         return(Ok());
     }
     catch (Exception exception)
     {
         throw exception;
     }
 }