taxtank-core 0.8.5 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/taxtank-core.umd.js +147 -96
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/collections/collection.js +2 -5
- package/esm2015/lib/db/Models/transaction-base.js +2 -1
- package/esm2015/lib/models/toast/toast-type.enum.js +8 -0
- package/esm2015/lib/models/toast/toast.js +9 -0
- package/esm2015/lib/services/http/address/address.service.js +39 -0
- package/esm2015/lib/services/http/bank/bank-account/bank-account.service.js +118 -0
- package/esm2015/lib/services/http/bank/bank-connection/bank-connection.service.js +52 -0
- package/esm2015/lib/services/http/bank/bank-transaction/bank-transaction.service.js +89 -0
- package/esm2015/lib/services/http/bank/bank.service.js +24 -0
- package/esm2015/lib/services/http/bank/basiq/basiq.service.js +94 -0
- package/esm2015/lib/services/http/chart-accounts/chart-accounts-depreciations/chart-accounts-depreciations.service.js +38 -0
- package/esm2015/lib/services/http/chart-accounts/chart-accounts.service.js +89 -0
- package/esm2015/lib/services/http/chat/chat.service.js +77 -0
- package/esm2015/lib/services/http/chat/message/message.service.js +65 -0
- package/esm2015/lib/services/http/chat/message-document/message-document.service.js +118 -0
- package/esm2015/lib/services/{depreciation/capital-project.service.js → http/depreciation/depreciation-capital-project/depreciation-capital-project.service.js} +7 -7
- package/esm2015/lib/services/http/depreciation/depreciation.service.js +146 -0
- package/esm2015/lib/services/http/document/document-folder/document-folder.service.js +84 -0
- package/esm2015/lib/services/{client → http/firm/client-invite}/client-invite.service.js +7 -7
- package/esm2015/lib/services/http/firm/client-movement/client-movement.service.js +98 -0
- package/esm2015/lib/services/http/firm/employee/employee.service.js +39 -0
- package/esm2015/lib/services/http/firm/employee-invite/employee-invite.service.js +53 -0
- package/esm2015/lib/services/http/firm/firm.service.js +79 -0
- package/esm2015/lib/services/http/firm/portfolio-report/client-portfolio-report.service.js +37 -0
- package/esm2015/lib/services/http/income-source/income-source-forecast/income-source-forecast.service.js +90 -0
- package/esm2015/lib/services/http/income-source/income-source.service.js +109 -0
- package/esm2015/lib/services/http/income-source/salary-forecast/salary-forecast.service.js +90 -0
- package/esm2015/lib/services/http/income-source/sole-forecast/sole-forecast.service.js +87 -0
- package/esm2015/lib/services/http/loan/borrowing-expense/borrowing-expense.service.js +73 -0
- package/esm2015/lib/services/http/loan/loan.service.js +145 -0
- package/esm2015/lib/services/http/property/property-category/property-category.service.js +23 -0
- package/esm2015/lib/services/http/property/property-category-movement/property-category-movement.service.js +47 -0
- package/esm2015/lib/services/http/property/property-document/property-document.service.js +70 -0
- package/esm2015/lib/services/http/property/property-sale/property-sale.service.js +20 -0
- package/esm2015/lib/services/http/property/property-sale/tax-exemption/tax-exemption.service.js +21 -0
- package/esm2015/lib/services/http/property/property-share/property-share.service.js +115 -0
- package/esm2015/lib/services/http/property/property.service.js +126 -0
- package/esm2015/lib/services/http/rest/rest.service.js +190 -0
- package/esm2015/lib/services/http/service-notification/service-notification.service.js +65 -0
- package/esm2015/lib/services/http/subscription/subscription.service.js +157 -0
- package/esm2015/lib/services/http/tax-review/tax-review-history/tax-review-history.service.js +41 -0
- package/esm2015/lib/services/http/tax-review/tax-review.service.js +103 -0
- package/esm2015/lib/services/http/tax-summary/tax-summary.service.js +71 -0
- package/esm2015/lib/services/http/transaction/transaction-allocation/transaction-allocation.service.js +85 -0
- package/esm2015/lib/services/http/transaction/transaction.service.js +326 -0
- package/esm2015/lib/services/http/user/occupation/occupation.service.js +45 -0
- package/esm2015/lib/services/http/user/user-event-setting/user-event-setting.service.js +59 -0
- package/esm2015/lib/services/http/user/user-event-type/user-event-type.service.js +29 -0
- package/esm2015/lib/services/http/user/user.service.js +124 -0
- package/esm2015/lib/services/http/vehicle/vehicle.service.js +237 -0
- package/esm2015/lib/services/property/equity-position-chart/equity-position-chart.service.js +45 -0
- package/esm2015/lib/services/toast/toast.service.js +26 -0
- package/esm2015/public-api.js +51 -48
- package/fesm2015/taxtank-core.js +99 -53
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/collections/collection.d.ts +1 -4
- package/lib/models/toast/toast-type.enum.d.ts +6 -0
- package/lib/models/toast/toast.d.ts +10 -0
- package/lib/services/{address → http/address}/address.service.d.ts +1 -1
- package/lib/services/{bank → http/bank/bank-account}/bank-account.service.d.ts +5 -5
- package/lib/services/{bank → http/bank/bank-connection}/bank-connection.service.d.ts +5 -5
- package/lib/services/{bank → http/bank/bank-transaction}/bank-transaction.service.d.ts +5 -5
- package/lib/services/{bank → http/bank}/bank.service.d.ts +4 -4
- package/lib/services/{bank → http/bank/basiq}/basiq.service.d.ts +7 -7
- package/lib/services/{chart-accounts → http/chart-accounts/chart-accounts-depreciations}/chart-accounts-depreciations.service.d.ts +4 -4
- package/lib/services/{chart-accounts → http/chart-accounts}/chart-accounts.service.d.ts +3 -3
- package/lib/services/{chat → http/chat}/chat.service.d.ts +7 -7
- package/lib/services/{chat → http/chat/message}/message.service.d.ts +7 -7
- package/lib/services/{chat → http/chat/message-document}/message-document.service.d.ts +3 -3
- package/lib/services/{depreciation/capital-project.service.d.ts → http/depreciation/depreciation-capital-project/depreciation-capital-project.service.d.ts} +4 -4
- package/lib/services/{depreciation → http/depreciation}/depreciation.service.d.ts +5 -5
- package/lib/services/{document → http/document/document-folder}/document-folder.service.d.ts +6 -6
- package/lib/services/{client → http/firm/client-invite}/client-invite.service.d.ts +4 -4
- package/lib/services/{client → http/firm/client-movement}/client-movement.service.d.ts +7 -7
- package/lib/services/{employee → http/firm/employee}/employee.service.d.ts +4 -4
- package/lib/services/{employee → http/firm/employee-invite}/employee-invite.service.d.ts +4 -4
- package/lib/services/{firm → http/firm}/firm.service.d.ts +2 -2
- package/lib/services/{client → http/firm/portfolio-report}/client-portfolio-report.service.d.ts +1 -1
- package/lib/services/{income-source → http/income-source/income-source-forecast}/income-source-forecast.service.d.ts +5 -5
- package/lib/services/{income-source → http/income-source}/income-source.service.d.ts +8 -8
- package/lib/services/{income-source → http/income-source/salary-forecast}/salary-forecast.service.d.ts +6 -6
- package/lib/services/{income-source → http/income-source/sole-forecast}/sole-forecast.service.d.ts +5 -5
- package/lib/services/{borrowing-expense → http/loan/borrowing-expense}/borrowing-expense.service.d.ts +2 -2
- package/lib/services/{loan → http/loan}/loan.service.d.ts +6 -6
- package/lib/services/{property → http/property}/property-category/property-category.service.d.ts +4 -4
- package/lib/services/{property → http/property/property-category-movement}/property-category-movement.service.d.ts +4 -4
- package/lib/services/{property → http/property}/property-document/property-document.service.d.ts +5 -5
- package/lib/services/http/property/property-sale/property-sale.service.d.ts +10 -0
- package/lib/services/http/property/property-sale/tax-exemption/tax-exemption.service.d.ts +11 -0
- package/lib/services/{property → http/property}/property-share/property-share.service.d.ts +5 -5
- package/lib/services/{property → http/property}/property.service.d.ts +5 -5
- package/lib/services/{base-rest.service.d.ts → http/rest/rest.service.d.ts} +4 -4
- package/lib/services/http/service-notification/service-notification.service.d.ts +31 -0
- package/lib/services/{subscription → http/subscription}/subscription.service.d.ts +6 -6
- package/lib/services/{tax-review → http/tax-review/tax-review-history}/tax-review-history.service.d.ts +5 -5
- package/lib/services/{tax-review → http/tax-review}/tax-review.service.d.ts +6 -6
- package/lib/services/{tax-summary → http/tax-summary}/tax-summary.service.d.ts +2 -2
- package/lib/services/{transaction → http/transaction/transaction-allocation}/transaction-allocation.service.d.ts +6 -6
- package/lib/services/{transaction → http/transaction}/transaction.service.d.ts +11 -7
- package/lib/services/{user → http/user/occupation}/occupation.service.d.ts +1 -1
- package/lib/services/{user-event → http/user/user-event-setting}/user-event-setting.service.d.ts +5 -5
- package/lib/services/{user-event → http/user/user-event-type}/user-event-type.service.d.ts +5 -5
- package/lib/services/{user → http/user}/user.service.d.ts +3 -3
- package/lib/services/{work/work-tank.service.d.ts → http/vehicle/vehicle.service.d.ts} +9 -8
- package/lib/services/property/{equity-position-chart.service.d.ts → equity-position-chart/equity-position-chart.service.d.ts} +1 -1
- package/lib/services/toast/toast.service.d.ts +13 -0
- package/package.json +1 -1
- package/public-api.d.ts +50 -47
- package/esm2015/lib/services/address/address.service.js +0 -39
- package/esm2015/lib/services/bank/bank-account.service.js +0 -118
- package/esm2015/lib/services/bank/bank-connection.service.js +0 -52
- package/esm2015/lib/services/bank/bank-transaction.service.js +0 -89
- package/esm2015/lib/services/bank/bank.service.js +0 -24
- package/esm2015/lib/services/bank/basiq.service.js +0 -94
- package/esm2015/lib/services/base-rest.service.js +0 -190
- package/esm2015/lib/services/borrowing-expense/borrowing-expense.service.js +0 -73
- package/esm2015/lib/services/chart-accounts/chart-accounts-depreciations.service.js +0 -38
- package/esm2015/lib/services/chart-accounts/chart-accounts.service.js +0 -89
- package/esm2015/lib/services/chat/chat.service.js +0 -77
- package/esm2015/lib/services/chat/message-document.service.js +0 -118
- package/esm2015/lib/services/chat/message.service.js +0 -65
- package/esm2015/lib/services/client/client-movement.service.js +0 -98
- package/esm2015/lib/services/client/client-portfolio-report.service.js +0 -37
- package/esm2015/lib/services/depreciation/depreciation.service.js +0 -146
- package/esm2015/lib/services/document/document-folder.service.js +0 -84
- package/esm2015/lib/services/employee/employee-invite.service.js +0 -53
- package/esm2015/lib/services/employee/employee.service.js +0 -39
- package/esm2015/lib/services/firm/firm.service.js +0 -79
- package/esm2015/lib/services/income-source/income-source-forecast.service.js +0 -90
- package/esm2015/lib/services/income-source/income-source.service.js +0 -109
- package/esm2015/lib/services/income-source/salary-forecast.service.js +0 -90
- package/esm2015/lib/services/income-source/sole-forecast.service.js +0 -87
- package/esm2015/lib/services/loan/loan.service.js +0 -145
- package/esm2015/lib/services/notification/notification.service.js +0 -65
- package/esm2015/lib/services/property/equity-position-chart.service.js +0 -45
- package/esm2015/lib/services/property/property-category/property-category.service.js +0 -23
- package/esm2015/lib/services/property/property-category-movement.service.js +0 -47
- package/esm2015/lib/services/property/property-document/property-document.service.js +0 -70
- package/esm2015/lib/services/property/property-sale/property-sale.service.js +0 -20
- package/esm2015/lib/services/property/property-sale/tax-exemption/tax-exemption.service.js +0 -21
- package/esm2015/lib/services/property/property-share/property-share.service.js +0 -115
- package/esm2015/lib/services/property/property.service.js +0 -126
- package/esm2015/lib/services/subscription/subscription.service.js +0 -157
- package/esm2015/lib/services/tax-review/tax-review-history.service.js +0 -41
- package/esm2015/lib/services/tax-review/tax-review.service.js +0 -103
- package/esm2015/lib/services/tax-summary/tax-summary.service.js +0 -71
- package/esm2015/lib/services/transaction/transaction-allocation.service.js +0 -85
- package/esm2015/lib/services/transaction/transaction.service.js +0 -319
- package/esm2015/lib/services/user/occupation.service.js +0 -45
- package/esm2015/lib/services/user/user.service.js +0 -124
- package/esm2015/lib/services/user-event/user-event-setting.service.js +0 -59
- package/esm2015/lib/services/user-event/user-event-type.service.js +0 -29
- package/esm2015/lib/services/work/work-tank.service.js +0 -236
- package/lib/services/notification/notification.service.d.ts +0 -31
- package/lib/services/property/property-sale/property-sale.service.d.ts +0 -10
- package/lib/services/property/property-sale/tax-exemption/tax-exemption.service.d.ts +0 -11
|
@@ -20,10 +20,7 @@ export declare class Collection<Model extends object> implements Iterable<Model>
|
|
|
20
20
|
* Get list of items ids
|
|
21
21
|
*/
|
|
22
22
|
getIds(): number[];
|
|
23
|
-
|
|
24
|
-
* @TODO vik rename
|
|
25
|
-
*/
|
|
26
|
-
getOneBy(path: string, value: any): Model;
|
|
23
|
+
findBy(path: string, value: any): Model;
|
|
27
24
|
getBy(path: string, value: any): this;
|
|
28
25
|
/**
|
|
29
26
|
* Get single item by id
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable, ReplaySubject } from 'rxjs';
|
|
3
|
-
import { Country } from '
|
|
3
|
+
import { Country } from '../../../models/address/country';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class AddressService {
|
|
6
6
|
private http;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
-
import { BankAccount as BankAccountBase } from '
|
|
4
|
-
import {
|
|
5
|
-
import { BankAccount } from '
|
|
6
|
-
import { EventDispatcherService } from '
|
|
3
|
+
import { BankAccount as BankAccountBase } from '../../../../db/Models/bank-account';
|
|
4
|
+
import { RestService } from '../../rest/rest.service';
|
|
5
|
+
import { BankAccount } from '../../../../models/bank/bank-account';
|
|
6
|
+
import { EventDispatcherService } from '../../../event/event-dispatcher.service';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
9
|
* Service that handling user's bank accounts logic
|
|
10
10
|
*/
|
|
11
|
-
export declare class BankAccountService extends
|
|
11
|
+
export declare class BankAccountService extends RestService<BankAccountBase, BankAccount> {
|
|
12
12
|
protected http: HttpClient;
|
|
13
13
|
protected eventDispatcherService: EventDispatcherService;
|
|
14
14
|
protected environment: any;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
-
import { BankConnection as BankConnectionBase } from '
|
|
4
|
-
import { EventDispatcherService } from '
|
|
5
|
-
import { BankConnection } from '
|
|
6
|
-
import {
|
|
3
|
+
import { BankConnection as BankConnectionBase } from '../../../../db/Models/bank-connection';
|
|
4
|
+
import { EventDispatcherService } from '../../../event/event-dispatcher.service';
|
|
5
|
+
import { BankConnection } from '../../../../models/bank/bank-connection';
|
|
6
|
+
import { RestService } from '../../rest/rest.service';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
9
|
* BankConnection means user account at specific bank (usually each user has only one at the same bank)
|
|
10
10
|
* service handles BankConnection management
|
|
11
11
|
*/
|
|
12
|
-
export declare class BankConnectionService extends
|
|
12
|
+
export declare class BankConnectionService extends RestService<BankConnectionBase, BankConnection> {
|
|
13
13
|
protected http: HttpClient;
|
|
14
14
|
protected eventDispatcherService: EventDispatcherService;
|
|
15
15
|
protected environment: any;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { BankTransaction as BankTransactionBase } from '
|
|
1
|
+
import { BankTransaction as BankTransactionBase } from '../../../../db/Models/bank-transaction';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
-
import {
|
|
3
|
+
import { RestService } from '../../rest/rest.service';
|
|
4
4
|
import { HttpClient } from '@angular/common/http';
|
|
5
|
-
import { BankTransaction } from '
|
|
6
|
-
import { EventDispatcherService } from '
|
|
5
|
+
import { BankTransaction } from '../../../../models/bank/bank-transaction';
|
|
6
|
+
import { EventDispatcherService } from '../../../event/event-dispatcher.service';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
9
|
* Service for bank transactions business logic
|
|
10
10
|
*/
|
|
11
|
-
export declare class BankTransactionService extends
|
|
11
|
+
export declare class BankTransactionService extends RestService<BankTransactionBase, BankTransaction> {
|
|
12
12
|
protected http: HttpClient;
|
|
13
13
|
protected eventDispatcherService: EventDispatcherService;
|
|
14
14
|
protected environment: any;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Bank as BankBase } from '
|
|
2
|
-
import { Bank } from '
|
|
3
|
-
import {
|
|
1
|
+
import { Bank as BankBase } from '../../../db/Models/bank';
|
|
2
|
+
import { Bank } from '../../../models/bank/bank';
|
|
3
|
+
import { RestService } from '../rest/rest.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* Service that handling banks logic
|
|
7
7
|
*/
|
|
8
|
-
export declare class BankService extends
|
|
8
|
+
export declare class BankService extends RestService<BankBase, Bank> {
|
|
9
9
|
modelClass: typeof Bank;
|
|
10
10
|
url: string;
|
|
11
11
|
isHydra: boolean;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable, ReplaySubject } from 'rxjs';
|
|
3
|
-
import { BankAccount as BankAccountBase } from '
|
|
4
|
-
import {
|
|
5
|
-
import { BankAccount } from '
|
|
6
|
-
import { BasiqToken } from '
|
|
7
|
-
import { EventDispatcherService } from '
|
|
8
|
-
import { BankConnection } from '
|
|
3
|
+
import { BankAccount as BankAccountBase } from '../../../../db/Models/bank-account';
|
|
4
|
+
import { RestService } from '../../rest/rest.service';
|
|
5
|
+
import { BankAccount } from '../../../../models/bank/bank-account';
|
|
6
|
+
import { BasiqToken } from '../../../../models/bank/basiq-token';
|
|
7
|
+
import { EventDispatcherService } from '../../../event/event-dispatcher.service';
|
|
8
|
+
import { BankConnection } from '../../../../models/bank/bank-connection';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
/**
|
|
11
11
|
* basiq is a middleman between bank and user
|
|
12
12
|
* service is responsible for fetching bank related information
|
|
13
13
|
*/
|
|
14
|
-
export declare class BasiqService extends
|
|
14
|
+
export declare class BasiqService extends RestService<BankAccountBase, BankAccount> {
|
|
15
15
|
protected http: HttpClient;
|
|
16
16
|
protected eventDispatcherService: EventDispatcherService;
|
|
17
17
|
protected environment: any;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ChartAccountsDepreciation as ChartAccountsDepreciationBase } from '
|
|
1
|
+
import { RestService } from '../../rest/rest.service';
|
|
2
|
+
import { ChartAccountsDepreciation as ChartAccountsDepreciationBase } from '../../../../db/Models/chart-accounts-depreciation';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
|
-
import { ChartAccountsDepreciation } from '
|
|
4
|
+
import { ChartAccountsDepreciation } from '../../../../models/chart-accounts/chart-accounts-depreciation';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
/**
|
|
7
7
|
* Service to work with depreciation chart accounts
|
|
8
8
|
*/
|
|
9
|
-
export declare class ChartAccountsDepreciationService extends
|
|
9
|
+
export declare class ChartAccountsDepreciationService extends RestService<ChartAccountsDepreciationBase, ChartAccountsDepreciation> {
|
|
10
10
|
url: string;
|
|
11
11
|
modelClass: typeof ChartAccountsDepreciation;
|
|
12
12
|
isHydra: boolean;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable, ReplaySubject } from 'rxjs';
|
|
3
|
-
import { ChartAccountsCategoryEnum } from '
|
|
4
|
-
import { ChartAccounts } from '
|
|
5
|
-
import { ChartAccountsHeading } from '
|
|
3
|
+
import { ChartAccountsCategoryEnum } from '../../../db/Enums/chart-accounts-category.enum';
|
|
4
|
+
import { ChartAccounts } from '../../../models/chart-accounts/chart-accounts';
|
|
5
|
+
import { ChartAccountsHeading } from '../../../models/chart-accounts/chart-accounts-heading';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
8
|
* Chart accounts service
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { Chat as ChatBase } from '
|
|
1
|
+
import { Chat as ChatBase } from '../../../db/Models/chat';
|
|
2
2
|
import { HttpClient } from '@angular/common/http';
|
|
3
|
-
import { SseService } from '
|
|
4
|
-
import {
|
|
5
|
-
import { IEventListener } from '
|
|
6
|
-
import { Chat } from '
|
|
7
|
-
import { EventDispatcherService } from '
|
|
3
|
+
import { SseService } from '../../event/sse.service';
|
|
4
|
+
import { RestService } from '../rest/rest.service';
|
|
5
|
+
import { IEventListener } from '../../../interfaces/event-listener.interface';
|
|
6
|
+
import { Chat } from '../../../models/chat/chat';
|
|
7
|
+
import { EventDispatcherService } from '../../event/event-dispatcher.service';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
/**
|
|
10
10
|
* Service for work with chats
|
|
11
11
|
*/
|
|
12
|
-
export declare class ChatService extends
|
|
12
|
+
export declare class ChatService extends RestService<ChatBase, Chat> implements IEventListener {
|
|
13
13
|
protected http: HttpClient;
|
|
14
14
|
protected eventDispatcherService: EventDispatcherService;
|
|
15
15
|
protected environment: any;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { Message as MessageBase } from '
|
|
2
|
-
import { IEventListener } from '
|
|
1
|
+
import { Message as MessageBase } from '../../../../db/Models/message';
|
|
2
|
+
import { IEventListener } from '../../../../interfaces/event-listener.interface';
|
|
3
3
|
import { HttpClient } from '@angular/common/http';
|
|
4
|
-
import { Message } from '
|
|
5
|
-
import {
|
|
6
|
-
import { EventDispatcherService } from '
|
|
7
|
-
import { SseService } from '
|
|
4
|
+
import { Message } from '../../../../models/chat/message';
|
|
5
|
+
import { RestService } from '../../rest/rest.service';
|
|
6
|
+
import { EventDispatcherService } from '../../../event/event-dispatcher.service';
|
|
7
|
+
import { SseService } from '../../../event/sse.service';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
/**
|
|
10
10
|
* Service for work with messages
|
|
11
11
|
*/
|
|
12
|
-
export declare class MessageService extends
|
|
12
|
+
export declare class MessageService extends RestService<MessageBase, Message> implements IEventListener {
|
|
13
13
|
protected http: HttpClient;
|
|
14
14
|
protected eventDispatcherService: EventDispatcherService;
|
|
15
15
|
protected environment: any;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Observable, ReplaySubject } from 'rxjs';
|
|
2
2
|
import { HttpClient } from '@angular/common/http';
|
|
3
|
-
import { IEventListener } from '
|
|
4
|
-
import { MessageDocument } from '
|
|
5
|
-
import { EventDispatcherService } from '
|
|
3
|
+
import { IEventListener } from '../../../../interfaces/event-listener.interface';
|
|
4
|
+
import { MessageDocument } from '../../../../models/chat/message-document';
|
|
5
|
+
import { EventDispatcherService } from '../../../event/event-dispatcher.service';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
8
|
* Service for work with Message Documents
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { Observable, ReplaySubject } from 'rxjs';
|
|
2
2
|
import { HttpClient } from '@angular/common/http';
|
|
3
|
-
import { DepreciationCapitalProject } from '
|
|
3
|
+
import { DepreciationCapitalProject } from '../../../../models/depreciation/depreciation-capital-project';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* Service for work with DepreciationCapitalProjects
|
|
7
7
|
*/
|
|
8
|
-
export declare class
|
|
8
|
+
export declare class DepreciationCapitalProjectService {
|
|
9
9
|
private http;
|
|
10
10
|
private environment;
|
|
11
11
|
cache: DepreciationCapitalProject[];
|
|
@@ -15,6 +15,6 @@ export declare class CapitalProjectService {
|
|
|
15
15
|
add(capitalProject: DepreciationCapitalProject, propertyId: number): Observable<void>;
|
|
16
16
|
update(capitalProject: DepreciationCapitalProject, propertyId: number): Observable<void>;
|
|
17
17
|
delete(capitalProject: DepreciationCapitalProject, propertyId: number): Observable<void>;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
19
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DepreciationCapitalProjectService, never>;
|
|
19
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DepreciationCapitalProjectService>;
|
|
20
20
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
-
import { Depreciation as DepreciationBase } from '
|
|
2
|
+
import { Depreciation as DepreciationBase } from '../../../db/Models/depreciation';
|
|
3
3
|
import { HttpClient } from '@angular/common/http';
|
|
4
|
-
import {
|
|
5
|
-
import { Depreciation } from '
|
|
6
|
-
import { EventDispatcherService } from '
|
|
4
|
+
import { RestService } from '../rest/rest.service';
|
|
5
|
+
import { Depreciation } from '../../../models/depreciation/depreciation';
|
|
6
|
+
import { EventDispatcherService } from '../../event/event-dispatcher.service';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class DepreciationService extends
|
|
8
|
+
export declare class DepreciationService extends RestService<DepreciationBase, Depreciation> {
|
|
9
9
|
protected http: HttpClient;
|
|
10
10
|
protected eventDispatcherService: EventDispatcherService;
|
|
11
11
|
protected environment: any;
|
package/lib/services/{document → http/document/document-folder}/document-folder.service.d.ts
RENAMED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { DocumentFolder as DocumentFolderBase } from '
|
|
1
|
+
import { DocumentFolder as DocumentFolderBase } from '../../../../db/Models/document-folder';
|
|
2
2
|
import { HttpClient } from '@angular/common/http';
|
|
3
|
-
import { Document } from '
|
|
3
|
+
import { Document } from '../../../../models/document/document';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
|
-
import {
|
|
6
|
-
import { DocumentFolder } from '
|
|
7
|
-
import { EventDispatcherService } from '
|
|
5
|
+
import { RestService } from '../../rest/rest.service';
|
|
6
|
+
import { DocumentFolder } from '../../../../models/document/document-folder';
|
|
7
|
+
import { EventDispatcherService } from '../../../event/event-dispatcher.service';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
/**
|
|
10
10
|
* Service to handle document-folders and depending documents logic
|
|
11
11
|
*/
|
|
12
|
-
export declare class DocumentFolderService extends
|
|
12
|
+
export declare class DocumentFolderService extends RestService<DocumentFolderBase, DocumentFolder> {
|
|
13
13
|
protected http: HttpClient;
|
|
14
14
|
protected eventDispatcherService: EventDispatcherService;
|
|
15
15
|
protected environment: any;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
-
import { ClientInvite as ClientInviteBase } from '
|
|
3
|
-
import {
|
|
4
|
-
import { ClientInvite } from '
|
|
2
|
+
import { ClientInvite as ClientInviteBase } from '../../../../db/Models/client-invite';
|
|
3
|
+
import { RestService } from '../../rest/rest.service';
|
|
4
|
+
import { ClientInvite } from '../../../../models/client/client-invite';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class ClientInviteService extends
|
|
6
|
+
export declare class ClientInviteService extends RestService<ClientInviteBase, ClientInvite> {
|
|
7
7
|
url: string;
|
|
8
8
|
modelClass: typeof ClientInvite;
|
|
9
9
|
/**
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { ClientMovement as ClientMovementBase } from '
|
|
1
|
+
import { ClientMovement as ClientMovementBase } from '../../../../db/Models/client-movement';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
-
import { ClientMovementCollection } from '
|
|
4
|
-
import { FirmTypeEnum } from '
|
|
3
|
+
import { ClientMovementCollection } from '../../../../collections/client-movement.collection';
|
|
4
|
+
import { FirmTypeEnum } from '../../../../db/Enums/firm-type.enum';
|
|
5
5
|
import { HttpClient } from '@angular/common/http';
|
|
6
|
-
import {
|
|
7
|
-
import { ClientMovement } from '
|
|
8
|
-
import { EventDispatcherService } from '
|
|
6
|
+
import { RestService } from '../../rest/rest.service';
|
|
7
|
+
import { ClientMovement } from '../../../../models/client/client-movement';
|
|
8
|
+
import { EventDispatcherService } from '../../../event/event-dispatcher.service';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class ClientMovementService extends
|
|
10
|
+
export declare class ClientMovementService extends RestService<ClientMovementBase, ClientMovement> {
|
|
11
11
|
protected http: HttpClient;
|
|
12
12
|
protected eventDispatcherService: EventDispatcherService;
|
|
13
13
|
protected environment: any;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { User as UserBase } from '
|
|
1
|
+
import { RestService } from '../../rest/rest.service';
|
|
2
|
+
import { User as UserBase } from '../../../../db/Models/user';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
|
-
import { User } from '
|
|
4
|
+
import { User } from '../../../../models/user/user';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class EmployeeService extends
|
|
6
|
+
export declare class EmployeeService extends RestService<UserBase, User> {
|
|
7
7
|
url: string;
|
|
8
8
|
modelClass: typeof User;
|
|
9
9
|
/**
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { EmployeeInvite as EmployeeInviteBase } from '
|
|
1
|
+
import { EmployeeInvite as EmployeeInviteBase } from '../../../../db/Models/employee-invite';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
-
import { EmployeeInvite } from '
|
|
4
|
-
import {
|
|
3
|
+
import { EmployeeInvite } from '../../../../models/employee/employee-invite';
|
|
4
|
+
import { RestService } from '../../rest/rest.service';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class EmployeeInviteService extends
|
|
6
|
+
export declare class EmployeeInviteService extends RestService<EmployeeInviteBase, EmployeeInvite> {
|
|
7
7
|
url: string;
|
|
8
8
|
modelClass: typeof EmployeeInvite;
|
|
9
9
|
/**
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable, ReplaySubject } from 'rxjs';
|
|
3
|
-
import { FirmTypeEnum } from '
|
|
4
|
-
import { Firm } from '
|
|
3
|
+
import { FirmTypeEnum } from '../../../db/Enums/firm-type.enum';
|
|
4
|
+
import { Firm } from '../../../models/firm/firm';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class FirmService {
|
|
7
7
|
private http;
|
package/lib/services/{client → http/firm/portfolio-report}/client-portfolio-report.service.d.ts
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
2
|
import { HttpClient } from '@angular/common/http';
|
|
3
|
-
import { ClientPortfolioReportCollection } from '
|
|
3
|
+
import { ClientPortfolioReportCollection } from '../../../../collections/client-portfolio-report.collection';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* Service to work with employee clients tax summary data
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { IncomeSourceForecast as IncomeSourceForecastBase } from '
|
|
3
|
-
import {
|
|
4
|
-
import { IncomeSourceForecast } from '
|
|
5
|
-
import { EventDispatcherService } from '
|
|
2
|
+
import { IncomeSourceForecast as IncomeSourceForecastBase } from '../../../../db/Models/income-source-forecast';
|
|
3
|
+
import { RestService } from '../../rest/rest.service';
|
|
4
|
+
import { IncomeSourceForecast } from '../../../../models/income-source/income-source-forecast';
|
|
5
|
+
import { EventDispatcherService } from '../../../event/event-dispatcher.service';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
8
|
* Service to work with Other Income Forecasts
|
|
9
9
|
*/
|
|
10
|
-
export declare class IncomeSourceForecastService extends
|
|
10
|
+
export declare class IncomeSourceForecastService extends RestService<IncomeSourceForecastBase, IncomeSourceForecast> {
|
|
11
11
|
protected http: HttpClient;
|
|
12
12
|
protected eventDispatcherService: EventDispatcherService;
|
|
13
13
|
protected environment: any;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { Observable, ReplaySubject } from 'rxjs';
|
|
2
2
|
import { HttpClient } from '@angular/common/http';
|
|
3
|
-
import { IncomeSource as IncomeSourceBase } from '
|
|
4
|
-
import {
|
|
5
|
-
import { IncomeSourceType } from '
|
|
6
|
-
import { SalaryForecast } from '
|
|
7
|
-
import { IncomeSourceTypeEnum } from '
|
|
8
|
-
import { EventDispatcherService } from '
|
|
9
|
-
import { IncomeSource } from '
|
|
3
|
+
import { IncomeSource as IncomeSourceBase } from '../../../db/Models/income-source';
|
|
4
|
+
import { RestService } from '../rest/rest.service';
|
|
5
|
+
import { IncomeSourceType } from '../../../models/income-source/income-source-type';
|
|
6
|
+
import { SalaryForecast } from '../../../models/income-source/salary-forecast';
|
|
7
|
+
import { IncomeSourceTypeEnum } from '../../../db/Enums/income-source-type.enum';
|
|
8
|
+
import { EventDispatcherService } from '../../event/event-dispatcher.service';
|
|
9
|
+
import { IncomeSource } from '../../../models/income-source/income-source';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
/**
|
|
12
12
|
* Service to work with income sources
|
|
13
13
|
*/
|
|
14
|
-
export declare class IncomeSourceService extends
|
|
14
|
+
export declare class IncomeSourceService extends RestService<IncomeSourceBase, IncomeSource> {
|
|
15
15
|
protected http: HttpClient;
|
|
16
16
|
protected eventDispatcherService: EventDispatcherService;
|
|
17
17
|
protected environment: any;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { SalaryForecast as SalaryForecastBase } from '
|
|
1
|
+
import { SalaryForecast as SalaryForecastBase } from '../../../../db/Models/salary-forecast';
|
|
2
2
|
import { HttpClient } from '@angular/common/http';
|
|
3
|
-
import {
|
|
4
|
-
import { IEventListener } from '
|
|
5
|
-
import { SalaryForecast } from '
|
|
6
|
-
import { EventDispatcherService } from '
|
|
3
|
+
import { RestService } from '../../rest/rest.service';
|
|
4
|
+
import { IEventListener } from '../../../../interfaces/event-listener.interface';
|
|
5
|
+
import { SalaryForecast } from '../../../../models/income-source/salary-forecast';
|
|
6
|
+
import { EventDispatcherService } from '../../../event/event-dispatcher.service';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
9
|
* Service to work with Salary Forecasts
|
|
10
10
|
*/
|
|
11
|
-
export declare class SalaryForecastService extends
|
|
11
|
+
export declare class SalaryForecastService extends RestService<SalaryForecastBase, SalaryForecast> implements IEventListener {
|
|
12
12
|
protected http: HttpClient;
|
|
13
13
|
protected eventDispatcherService: EventDispatcherService;
|
|
14
14
|
protected environment: any;
|
package/lib/services/{income-source → http/income-source/sole-forecast}/sole-forecast.service.d.ts
RENAMED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { SoleForecast as SoleForecastBase } from '
|
|
3
|
-
import {
|
|
4
|
-
import { SoleForecast } from '
|
|
5
|
-
import { EventDispatcherService } from '
|
|
2
|
+
import { SoleForecast as SoleForecastBase } from '../../../../db/Models/sole-forecast';
|
|
3
|
+
import { RestService } from '../../rest/rest.service';
|
|
4
|
+
import { SoleForecast } from '../../../../models/income-source/sole-forecast';
|
|
5
|
+
import { EventDispatcherService } from '../../../event/event-dispatcher.service';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class SoleForecastService extends
|
|
7
|
+
export declare class SoleForecastService extends RestService<SoleForecastBase, SoleForecast> {
|
|
8
8
|
protected http: HttpClient;
|
|
9
9
|
protected eventDispatcherService: EventDispatcherService;
|
|
10
10
|
protected environment: any;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Observable, ReplaySubject } from 'rxjs';
|
|
2
2
|
import { HttpClient } from '@angular/common/http';
|
|
3
|
-
import { BorrowingExpense } from '
|
|
4
|
-
import { Loan } from '
|
|
3
|
+
import { BorrowingExpense } from '../../../../models/borrowing-expense/borrowing-expense';
|
|
4
|
+
import { Loan } from '../../../../models/loan/loan';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class BorrowingExpenseService {
|
|
7
7
|
private http;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
-
import { Loan as LoanBase } from '
|
|
2
|
+
import { Loan as LoanBase } from '../../../db/Models/loan';
|
|
3
3
|
import { HttpClient } from '@angular/common/http';
|
|
4
|
-
import {
|
|
5
|
-
import { Loan } from '
|
|
6
|
-
import { EventDispatcherService } from '
|
|
7
|
-
import { LoanPayout } from '
|
|
4
|
+
import { RestService } from '../rest/rest.service';
|
|
5
|
+
import { Loan } from '../../../models/loan/loan';
|
|
6
|
+
import { EventDispatcherService } from '../../event/event-dispatcher.service';
|
|
7
|
+
import { LoanPayout } from '../../../models/loan/loan-payout';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
/**
|
|
10
10
|
* Service that handling loans logic
|
|
11
11
|
*/
|
|
12
|
-
export declare class LoanService extends
|
|
12
|
+
export declare class LoanService extends RestService<LoanBase, Loan> {
|
|
13
13
|
protected http: HttpClient;
|
|
14
14
|
protected eventDispatcherService: EventDispatcherService;
|
|
15
15
|
protected environment: any;
|
package/lib/services/{property → http/property}/property-category/property-category.service.d.ts
RENAMED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { PropertyCategory as PropertyCategoryBase } from '
|
|
2
|
-
import {
|
|
3
|
-
import { PropertyCategory } from '
|
|
1
|
+
import { PropertyCategory as PropertyCategoryBase } from '../../../../db/Models/property/property-category';
|
|
2
|
+
import { RestService } from '../../rest/rest.service';
|
|
3
|
+
import { PropertyCategory } from '../../../../models/property/property-category';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* Service for work with Property Categories
|
|
7
7
|
*/
|
|
8
|
-
export declare class PropertyCategoryService extends
|
|
8
|
+
export declare class PropertyCategoryService extends RestService<PropertyCategoryBase, PropertyCategory> {
|
|
9
9
|
modelClass: typeof PropertyCategory;
|
|
10
10
|
url: string;
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<PropertyCategoryService, never>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { PropertyCategoryMovement } from '
|
|
2
|
-
import { PropertyCategoryMovement as PropertyCategoryMovementBase } from '
|
|
3
|
-
import {
|
|
1
|
+
import { PropertyCategoryMovement } from '../../../../models/property/property-category-movement';
|
|
2
|
+
import { PropertyCategoryMovement as PropertyCategoryMovementBase } from '../../../../db/Models/property/property-category-movement';
|
|
3
|
+
import { RestService } from '../../rest/rest.service';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class PropertyCategoryMovementService extends
|
|
6
|
+
export declare class PropertyCategoryMovementService extends RestService<PropertyCategoryMovementBase, PropertyCategoryMovement> {
|
|
7
7
|
modelClass: typeof PropertyCategoryMovement;
|
|
8
8
|
url: string;
|
|
9
9
|
add(model: PropertyCategoryMovement): Observable<PropertyCategoryMovement>;
|
package/lib/services/{property → http/property}/property-document/property-document.service.d.ts
RENAMED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
-
import { PropertyDocument as PropertyDocumentBase } from '
|
|
2
|
+
import { PropertyDocument as PropertyDocumentBase } from '../../../../db/Models/property/property-document';
|
|
3
3
|
import { HttpClient } from '@angular/common/http';
|
|
4
|
-
import { EventDispatcherService } from '
|
|
5
|
-
import { PropertyDocument } from '
|
|
6
|
-
import {
|
|
4
|
+
import { EventDispatcherService } from '../../../event/event-dispatcher.service';
|
|
5
|
+
import { PropertyDocument } from '../../../../models/property/property-document';
|
|
6
|
+
import { RestService } from '../../rest/rest.service';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
9
|
* Class for work with Property Documents
|
|
10
10
|
*/
|
|
11
|
-
export declare class PropertyDocumentService extends
|
|
11
|
+
export declare class PropertyDocumentService extends RestService<PropertyDocumentBase, PropertyDocument> {
|
|
12
12
|
protected http: HttpClient;
|
|
13
13
|
protected eventDispatcherService: EventDispatcherService;
|
|
14
14
|
protected environment: any;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { PropertySale as PropertySaleBase } from '../../../../db/Models/property/property-sale/property-sale';
|
|
2
|
+
import { PropertySale } from '../../../../models/property/property-sale/property-sale';
|
|
3
|
+
import { RestService } from '../../rest/rest.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class PropertySaleService extends RestService<PropertySaleBase, PropertySale> {
|
|
6
|
+
modelClass: typeof PropertySale;
|
|
7
|
+
url: string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PropertySaleService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PropertySaleService>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { RestService } from '../../../rest/rest.service';
|
|
2
|
+
import { TaxExemption as BaseTaxExemption } from '../../../../../db/Models/property/property-sale/tax-exemption';
|
|
3
|
+
import { TaxExemption } from '../../../../../models/property/property-sale/tax-exemption';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TaxExemptionService extends RestService<BaseTaxExemption, TaxExemption> {
|
|
6
|
+
modelClass: typeof TaxExemption;
|
|
7
|
+
url: string;
|
|
8
|
+
isHydra: boolean;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TaxExemptionService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TaxExemptionService>;
|
|
11
|
+
}
|