public IActionResult Index()
        {
            var plants = _service.GetAllPlants <PlantViewModel>();

            return(View(plants));
        }
Example #2
0
        public async Task <PlantResponse> GetAllPlants()
        {
            PlantResponse plantResponse = await _plantsService.GetAllPlants();

            return(plantResponse);
        }