1
0

DURACOM-235 added missing import and service

This commit is contained in:
Mattia Vianelli
2024-02-21 13:12:58 +01:00
parent e71b54c79d
commit e3b19e4e9f

View File

@@ -12,6 +12,7 @@ import {
import { Collection } from '../../core/shared/collection.model';
import { ComColFormComponent } from '../../shared/comcol/comcol-forms/comcol-form/comcol-form.component';
import { NotificationsService } from '../../shared/notifications/notifications.service';
import { CollectionDataService } from '../../core/data/collection-data.service';
import { AuthService } from '../../core/auth/auth.service';
import { RequestService } from '../../core/data/request.service';
import { ObjectCacheService } from '../../core/cache/object-cache.service';
@@ -59,6 +60,7 @@ export class CollectionFormComponent extends ComColFormComponent<Collection> imp
protected translate: TranslateService,
protected notificationsService: NotificationsService,
protected authService: AuthService,
protected dsoService: CollectionDataService,
protected requestService: RequestService,
protected objectCache: ObjectCacheService,
protected entityTypeService: EntityTypeDataService,