public async Task <ResponseDto> Delete([FromQuery] int id)
        {
            int result = await _busService.DeleteAsync(id);

            if (result == 0)
            {
                return(new ResponseDto(ResponseCode.LogicError, "Xóa không thành công"));
            }
            if (result == -1)
            {
                return(new ResponseDto(ResponseCode.LogicError, "Không tìm thấy đối tượng cần xóa"));
            }
            return(new ResponseDto(ResponseCode.Success, "Xóa thành công"));
        }