Ejemplo n.º 1
0
        public ActionResult Index()
        {
            // Get the data
            var locationService = new LocationRepository();
            var model = new MyCheckInViewModel();

            model.Locations = locationService.GetLocations().ToList();

            return this.View(model);
        }
Ejemplo n.º 2
0
        public ActionResult Index()
        {
            var locationRepository = new LocationRepository();
            var locations = locationRepository.GetLocations()
                                              .OrderByDescending(x => x.CheckIns.Count)
                                              .Take(10);

            List<TopLocationModel> topLocationModels = new List<TopLocationModel>();
            foreach (Location location in locations)
            {
                var result = (from c in location.CheckIns
                              group c by c.User
                              into checkInsByUser
                              orderby checkInsByUser.Count() descending
                              select checkInsByUser.Key.UserName).FirstOrDefault();
                result = result != null ? result : "No users have checked in";
                topLocationModels.Add(new TopLocationModel(location.Name, result));
            }

            return View(new HomeViewModel(topLocationModels));
        }