spartaxx.businessmodels 1.0.50 → 1.0.52
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
@@ -1,9 +1,15 @@
|
|
1
1
|
import { ProtestDocuments } from "./ProtestDocuments";
|
2
|
+
import { ProtestHB201RequestDocument } from "./ProtestHB201RequestDocument";
|
2
3
|
import { ProtestHistoryInfo } from "./ProtestHistoryInfo";
|
3
|
-
import {
|
4
|
+
import { ProtestingAccountInfo } from "./ProtestingAccountInfo";
|
4
5
|
import { ProtestingAccounts } from "./ProtestingAccounts";
|
6
|
+
import { ProtestPropertyInfo } from "./ProtestPropertyInfo";
|
5
7
|
import { ProtestPTFayetteDcoument } from "./ProtestPTFayetteDocument";
|
6
|
-
import { ProtestHB201RequestDocument } from "./ProtestHB201RequestDocument";
|
7
8
|
import { PTBexarExcelDocument } from "./PTBexarExcelDocument";
|
9
|
+
import { ProtestAccountParam } from "./ProtestAccountParam";
|
8
10
|
|
9
|
-
export {
|
11
|
+
export {
|
12
|
+
ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestingAccounts,
|
13
|
+
ProtestPTFayetteDcoument, ProtestHB201RequestDocument, PTBexarExcelDocument,
|
14
|
+
ProtestingAccountInfo, ProtestAccountParam
|
15
|
+
};
|
@@ -2,10 +2,7 @@ import { DatasetSortingOperation } from "Masters/DatasetSortingOperation";
|
|
2
2
|
import { ProtestingAccountInfo } from "./ProtestingAccountInfo";
|
3
3
|
|
4
4
|
export interface ProtestingAccounts {
|
5
|
-
ProtestingAccountInputParam: ProtestingAccountInfo;
|
6
|
-
OffsetValue: number;
|
7
|
-
FetchRecordsCounts: number;
|
8
|
-
ProtestingAccountInfo: ProtestingAccountInfo[];
|
9
5
|
TotalRecords: number;
|
10
|
-
|
6
|
+
ProtestingAccountInfo: ProtestingAccountInfo[];
|
7
|
+
DatasetSortingOperation: DatasetSortingOperation;
|
11
8
|
}
|