Пример #1
0
 public void Delete(int id)
 {
     try
     {
         _cartaoServico.ExcluirPorId(id);
     }
     catch (NotFoundException)
     {
         throw new HttpResponseException(HttpStatusCode.NotFound);
     }
 }