spartaxx.businessmodels 1.0.48 → 1.0.50
Sign up to get free protection for your applications and to get access to all the features.
package/Common/PdfExport.ts
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
export interface DatasetSortingOperation {
|
2
2
|
Id: number;
|
3
3
|
ModelPropertyName: string;
|
4
|
-
Query:string;
|
5
|
-
Order:number;
|
6
|
-
DataSetId:number;
|
4
|
+
Query: string;
|
5
|
+
Order: number;
|
6
|
+
DataSetId: number;
|
7
7
|
IsInActive: boolean;
|
8
8
|
IsSelected: boolean;
|
9
9
|
SortingType: String;
|
package/Masters/MasterModels.ts
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
import { APIMaster } from "./APIMaster";
|
2
2
|
import { ApiMasterDatasetColumns } from "./ApiMasterDatasetColumns"
|
3
3
|
import { DataSetMaster } from "./DataSetMaster";
|
4
|
+
import { DatasetSelectOperation } from "./DatasetSelectOperation";
|
5
|
+
import { DatasetFilterOperation } from "./DatasetFilterOperation";
|
6
|
+
import { DatasetSortingOperation } from "./DatasetSortingOperation";
|
4
7
|
|
5
|
-
export { APIMaster, ApiMasterDatasetColumns, DataSetMaster };
|
8
|
+
export { APIMaster, ApiMasterDatasetColumns, DataSetMaster, DatasetSelectOperation, DatasetFilterOperation, DatasetSortingOperation };
|
@@ -2,9 +2,9 @@ import { DatasetSortingOperation } from "Masters/DatasetSortingOperation";
|
|
2
2
|
import { ProtestingAccountInfo } from "./ProtestingAccountInfo";
|
3
3
|
|
4
4
|
export interface ProtestingAccounts {
|
5
|
-
ProtestingAccountInputParam:ProtestingAccountInfo;
|
5
|
+
ProtestingAccountInputParam: ProtestingAccountInfo;
|
6
6
|
OffsetValue: number;
|
7
|
-
FetchRecordsCounts: number;
|
7
|
+
FetchRecordsCounts: number;
|
8
8
|
ProtestingAccountInfo: ProtestingAccountInfo[];
|
9
9
|
TotalRecords: number;
|
10
10
|
DatasetSortingOperation: DatasetSortingOperation
|