fix(sorting): add the missing the resources columns.

This commit is contained in:
a.bouhuolia
2021-03-06 14:11:28 +02:00
parent 32e5695950
commit b03a27aefb
9 changed files with 84 additions and 7 deletions

View File

@@ -1,3 +1,4 @@
import { IFilterRole } from './DynamicFilter';
export interface IExchangeRate {
id: number,
@@ -21,6 +22,9 @@ export interface IExchangeRateEditDTO {
export interface IExchangeRateFilter {
page: number,
pageSize: number,
filterRoles?: IFilterRole[];
columnSortBy: string;
sortOrder: string;
};
export interface IExchangeRatesService {

View File

@@ -1,4 +1,5 @@
import { ISystemUser } from './User';
import { IFilterRole } from './DynamicFilter';
export interface IPaginationMeta {
total: number;
@@ -9,6 +10,9 @@ export interface IPaginationMeta {
export interface IExpensesFilter {
page: number;
pageSize: number;
filterRoles?: IFilterRole[];
columnSortBy: string;
sortOrder: string;
}
export interface IExpense {