public async Task<ResultDto<StopDto>> GetById(int id)
 {
     var stop = await _stopService.GetById(id);
     if (stop == null)
         return new ResultDto<StopDto>() { 
             StatusCode = ResponseCode.NotFound, 
             Message = "Không tìm thấy đối tượng", 
             Result = null 
         };
     return new ResultDto<StopDto>()
     {
         StatusCode = ResponseCode.Success,
         Message = "Thành công",
         Result = stop
     };
 }