public async Task <ActionResult> Search(string searchKeyword, Paging paging, List <OrderBy> orderBy)
        {
            var data = await _personnelBusinessService.Search(searchKeyword, orderBy, paging);

            return(this.JsonNet(data));
        }
示例#2
0
 public async Task <ActionResult> Search(string searchKeyword, Paging paging, List <OrderBy> orderBy)
 {
     return(this.JsonNet(await _personnelBusinessService.Search(UserCentreId, searchKeyword, orderBy, paging)));
 }