public IActionResult Index() { var plants = _service.GetAllPlants <PlantViewModel>(); return(View(plants)); }
public async Task <PlantResponse> GetAllPlants() { PlantResponse plantResponse = await _plantsService.GetAllPlants(); return(plantResponse); }