public async Task<ResponseDto> Create([FromBody]CreateStopRequestDto request)
 {
     if (!ModelState.IsValid)
     {
         return new ResponseDto(ResponseCode.Validate, "Đầu vào không hợp lệ");
     }
     var stopId = await _stopService.Create(request);
     if (stopId == 0)
     {
         return new ResponseDto(ResponseCode.LogicError, "Tạo mới không thành công");
     }
     return new ResponseDto(ResponseCode.Success, "Tạo mới thành công");
 }