spartaxx.businessmodels 1.0.51 → 1.0.53
Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,11 @@
|
|
1
|
+
import { DatasetSortingOperation } from "Masters/DatasetSortingOperation";
|
2
|
+
|
3
|
+
export interface ProtestAccountParam {
|
4
|
+
CountyId: number;
|
5
|
+
TaxYear: number;
|
6
|
+
ModeId: number;
|
7
|
+
PropertyType: string;
|
8
|
+
OffsetValue: number;
|
9
|
+
FetchRecordsCounts: number;
|
10
|
+
DatasetSortingOperation: DatasetSortingOperation;
|
11
|
+
}
|
package/Protest/ProtestModels.ts
CHANGED
@@ -6,9 +6,10 @@ import { ProtestingAccounts } from "./ProtestingAccounts";
|
|
6
6
|
import { ProtestPropertyInfo } from "./ProtestPropertyInfo";
|
7
7
|
import { ProtestPTFayetteDcoument } from "./ProtestPTFayetteDocument";
|
8
8
|
import { PTBexarExcelDocument } from "./PTBexarExcelDocument";
|
9
|
+
import { ProtestAccountParam } from "./ProtestAccountParam";
|
9
10
|
|
10
11
|
export {
|
11
12
|
ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestingAccounts,
|
12
13
|
ProtestPTFayetteDcoument, ProtestHB201RequestDocument, PTBexarExcelDocument,
|
13
|
-
ProtestingAccountInfo
|
14
|
+
ProtestingAccountInfo, ProtestAccountParam
|
14
15
|
};
|
@@ -1,11 +1,12 @@
|
|
1
|
+
import { DatasetSelectOperation } from "Masters/DatasetSelectOperation";
|
2
|
+
import { DatasetFilterOperation } from "Masters/DatasetFilterOperation";
|
1
3
|
import { DatasetSortingOperation } from "Masters/DatasetSortingOperation";
|
2
4
|
import { ProtestingAccountInfo } from "./ProtestingAccountInfo";
|
3
5
|
|
4
6
|
export interface ProtestingAccounts {
|
5
|
-
ProtestingAccountInputParam: ProtestingAccountInfo;
|
6
|
-
OffsetValue: number;
|
7
|
-
FetchRecordsCounts: number;
|
8
|
-
ProtestingAccountInfo: ProtestingAccountInfo[];
|
9
7
|
TotalRecords: number;
|
10
|
-
|
8
|
+
ProtestingAccountInfo: ProtestingAccountInfo[];
|
9
|
+
DatasetSelectOperation: DatasetSelectOperation[];
|
10
|
+
DatasetFilterOperation: DatasetFilterOperation[];
|
11
|
+
DatasetSortingOperation: DatasetSortingOperation[];
|
11
12
|
}
|