public async Task <ActionResult> Search(string searchKeyword, Paging paging, List <OrderBy> orderBy) { var isSuperAdmin = User.IsSuperAdmin(); var drivingSchoolId = UserDrivingSchoolId; return(this.JsonNet(await _driverBusinessService.Search(isSuperAdmin, drivingSchoolId, searchKeyword, orderBy, paging))); }
public async Task <ActionResult> Search(string searchKeyword, Paging paging, List <OrderBy> orderBy) { return(this.JsonNet(await _driverBusinessService.Search(searchKeyword, orderBy, paging))); }