spartaxx.businessmodels 1.0.149 → 1.0.151
Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,15 @@
|
|
1
|
+
import { BlastCountyPriority } from "./BlastCountyPriority";
|
2
|
+
import { DatasetSelectOperation } from "Masters/DatasetSelectOperation";
|
3
|
+
import { DatasetFilterOperation } from "Masters/DatasetFilterOperation";
|
4
|
+
import { DatasetSortingOperation } from "Masters/DatasetSortingOperation";
|
5
|
+
import { ApiMasterDatasetColumns } from "Masters/ApiMasterDatasetColumns";
|
6
|
+
|
7
|
+
export interface BlastCountyPriorityResults {
|
8
|
+
TotalRecords?: number;
|
9
|
+
BlastCountyPriority?: BlastCountyPriority[];
|
10
|
+
DatasetSelectOperation?: DatasetSelectOperation[];
|
11
|
+
DatasetFilterOperation?: DatasetFilterOperation[];
|
12
|
+
DatasetSortingOperation?: DatasetSortingOperation[];
|
13
|
+
DatasetExportExcelOperation?: DatasetSelectOperation[];
|
14
|
+
ColumnsList?: ApiMasterDatasetColumns[];
|
15
|
+
}
|
package/CCC/CCCModel.ts
CHANGED
@@ -8,6 +8,7 @@ import { AccountInfo } from "./AccountInfo";
|
|
8
8
|
import { CCCTemplateData } from "./CCCTemplateData";
|
9
9
|
import { Client } from "./Client";
|
10
10
|
import { BlastCountyPriority } from "./BlastCountyPriority";
|
11
|
+
import { BlastCountyPriorityResults } from "./BlastCountyPriorityResults";
|
11
12
|
|
12
13
|
export {
|
13
14
|
ScoreCardDetails,
|
@@ -19,5 +20,6 @@ export {
|
|
19
20
|
AccountInfo,
|
20
21
|
CCCTemplateData,
|
21
22
|
Client,
|
22
|
-
BlastCountyPriority
|
23
|
+
BlastCountyPriority,
|
24
|
+
BlastCountyPriorityResults
|
23
25
|
}
|
@@ -8,16 +8,27 @@ export interface QualifiedClientInfo {
|
|
8
8
|
TaxYear?: number;
|
9
9
|
Mode?: string;
|
10
10
|
DeliveryAddress?: string;
|
11
|
+
|
11
12
|
IsNeedAgreement?: boolean;
|
13
|
+
IsAgreementGenerated?: boolean;
|
14
|
+
|
12
15
|
IsHomeStead?: boolean;
|
13
16
|
IsNeedAofAExpirtationForm?: boolean;
|
17
|
+
IsNeedAofAExpirtationFormGenerated?: boolean;
|
14
18
|
IsNeedConsentForm?: boolean;
|
19
|
+
IsNeedConsentFormGenerated?: boolean;
|
15
20
|
IsNeedAofA?: boolean;
|
21
|
+
IsNeedAofAGenerated?: boolean;
|
22
|
+
|
16
23
|
IsNeedBAAofA?: boolean;
|
24
|
+
IsNeedBAAofAGenerated?: boolean;
|
25
|
+
|
17
26
|
IsNeedPropertySurveyForm?: boolean;
|
27
|
+
IsNeedPropertySurveyFormGenerated?: boolean;
|
28
|
+
|
18
29
|
BlastStatusId?: number;
|
19
|
-
|
30
|
+
|
20
31
|
ResidentailAccounts?: number;
|
21
32
|
CommercialAccounts?: number;
|
22
|
-
TotalAccounts?:number;
|
33
|
+
TotalAccounts?: number;
|
23
34
|
}
|