| .. | .. |
|---|
| 1 | 1 | import { Observable } from 'rxjs/Rx'; |
|---|
| 2 | 2 | import { Injectable } from '@angular/core'; |
|---|
| 3 | 3 | import { Http, RequestOptions } from '@angular/http'; |
|---|
| 4 | +import { Locker } from 'angular-safeguard'; |
|---|
| 4 | 5 | import { SeCurisResourceServices } from './base'; |
|---|
| 5 | 6 | import { LocaleService } from '../common/i18n'; |
|---|
| 6 | 7 | |
|---|
| .. | .. |
|---|
| 15 | 16 | |
|---|
| 16 | 17 | @Injectable() |
|---|
| 17 | 18 | export class LicenseTypesService extends SeCurisResourceServices { |
|---|
| 18 | | - constructor(http: Http, $L: LocaleService) { |
|---|
| 19 | | - super($L, http, 'licensetype'); |
|---|
| 19 | + constructor(http: Http, $L: LocaleService, store: Locker) { |
|---|
| 20 | + super($L, http, store, 'licensetype'); |
|---|
| 20 | 21 | } |
|---|
| 21 | 22 | |
|---|
| 22 | 23 | |
|---|