コード例 #1
0
 public async Task <UserPaginationViewModel> GetByPage(
     string trueName,
     Gender?gender,
     IsEnabled?isEnabled,
     int current,
     int pageSize,
     string orderByPropertyName,
     bool isAsc)
 {
     return(await _userQueryService.GetByPage(
                new UserFilters(trueName, gender, isEnabled),
                current,
                pageSize,
                orderByPropertyName,
                isAsc));
 }