rsanchez
2017-03-20 1a0491f2462d2c309bd8e310b22c11019a79ce1e
securis/src/main/webapp/src/app/resources/license_types.ts
....@@ -2,6 +2,7 @@
22 import { Injectable } from '@angular/core';
33 import { Http, RequestOptions } from '@angular/http';
44 import { SeCurisResourceServices } from './base';
5
+import { LocaleService } from '../common/i18n';
56
67 var lictype_example = { application_name: 'CurisIntegrity',
78 code: 'CIA2',
....@@ -14,8 +15,8 @@
1415
1516 @Injectable()
1617 export class LicenseTypesService extends SeCurisResourceServices {
17
- constructor(http: Http) {
18
- super(http, 'licensetype');
18
+ constructor(http: Http, $L: LocaleService) {
19
+ super($L, http, 'licensetype');
1920 }
2021
2122