Пример #1
0
        //need to pass a user to this method once the login stuff is worked out
        public ViewResult Calendar()
        {
            User       u          = uRepo.GetUser(11);
            BvLocation bvLocation = lRepo.GetBvLocation(u.BvLocation.BvLocationId);
            var        db         = new CapstoneDbContext();

            bvLocation.PartnershipNights = lRepo.GetPartnershipNights(bvLocation);

            return(View(bvLocation));
        }