public async Task <IActionResult> Index()
        {
            var huskies = await _rescuegroupService.GetAdoptableHuskiesAsync();

            var model = new RescueGroupAnimals {
                Animals = huskies
            };

            return(View(model));
        }
Beispiel #2
0
        public async Task <IActionResult> Index()
        {
            //var huskies = await _rescueGroupsService.GetFosterableHuskiesAsync();
            var huskies = await _rescueGroupsService.GetAdoptableHuskiesAsync();

            // using a lookup that will work so that the page will load. Not sure we need this view since the adoptable huskies page has a 'filter' to
            // show dogs that need foster. Otherwise, we need to work around 'animalNeedsFoster' being a volunteer level search, not a public search.


            var model = new RescueGroupAnimals {
                Animals = huskies
            };

            return(View(model));
        }