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