Ejemplo n.º 1
0
 public TravelInfoDTO GetTravelById(int id)
 {
     try
     {
         var travel = _repository.GetTravelInfoById(id);
         if (travel == null)
         {
             return(null);
         }
         return(travel);
     }
     catch
     {
         return(null);
     }
 }