Exemplo n.º 1
0
 public Pasaje CancelarPasaje([FromUri] int idPasaje)
 {
     try
     {
         return(blu.CancelarPasaje(idPasaje));
     }
     catch (Exception e)
     {
         throw new HttpResponseException(Request.CreateErrorResponse(HttpStatusCode.InternalServerError, e.Message));
     }
 }