public IActionResult BusStop([FromBody] BusStopBindingModel busStopBindingModel) { if (!ModelState.IsValid) { return(BadRequest(new ApiError(ModelState))); } busService.AddBusStop(busStopBindingModel); return(Ok()); }