public IActionResult Index()
        {
            HomeIndex homeIndex = new HomeIndex()
            {
                CompletedBags          = _donationService.CountOfCompletedBags(),
                Institutions           = _institutionService.GetAllSelect1().ToList(),
                SupportedOrganizations = _donationService.CountOfSupportedOrganizations()
            };

            return(View(homeIndex));
        }