Example #1
0
 public IHttpActionResult PostChangeOut(Check fkSubReservacion)
 {
     try
     {
         var checkManager = new CheckManagement();
         apiResponse = new ApiResponse();
         checkManager.changeOut(Int32.Parse(fkSubReservacion.FkSubReservacion));
         return(Ok(apiResponse));
     }
     catch (Exception e)
     {
         return(InternalServerError(e));
     }
 }