Пример #1
0
        public ViewResult TopDrop2GDaily(TopDrop2GDailyViewModel postedModel)
        {
            TopDrop2GDailyViewModel viewModel
                = topDrop2GDailyRepository.Stats.GenerateView <
                      TopDrop2GDailyViewModel, TopDrop2GCellDaily, TopDrop2GCellDailyView>(
                      postedModel.StatDate, regionNamesService.Query().ToList(),
                      btsRepository.GetAllList(), eNodebRepository.GetAllList());

            return(View(viewModel));
        }
Пример #2
0
 public ViewResult TopDrop2GDaily(TopDrop2GDailyViewModel postedModel)
 {
     TopDrop2GDailyViewModel viewModel
         =topDrop2GDailyRepository.GetAll().GenerateView<
         TopDrop2GDailyViewModel,TopDrop2GCellDaily,TopDrop2GCellDailyView>(
         postedModel.StatDate, regionNamesService.Query().ToList(),
         btsRepository.GetAllList(), eNodebRepository.GetAllList());
     return View(viewModel);
 }