Пример #1
0
 public TourEntitiesViewModel GetDynamicTourEntities(TourEntitiesParam tourEntitiesParam)
 {
     model = new TourEntitiesViewModel();
     try
     {
         TourEntitiesGetReq tourEntitiesGetReq = new TourEntitiesGetReq()
         {
             QRFID = tourEntitiesParam.QRFID, GetType = tourEntitiesParam.TourType
         };
         model = positionMapping.GetDynamicTourEntities(_configuration, token, tourEntitiesGetReq);
     }
     catch (Exception ex)
     {
         throw;
     }
     return(model);
 }