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)); }