public async Task <ActionResult <Zone> > GetZoneById( [FromServices] IZoneService zoneService, [FromRoute] int zoneId) { return(await zoneService.FindZoneById(zoneId)); }