forked from hazza/dspace-angular
Revert "93803: Update DataService constructor signatures"
This reverts commit a6fb4a6303
.
This commit is contained in:
@@ -45,14 +45,14 @@ export interface CreateData<T extends CacheableObject> {
|
||||
export class CreateDataImpl<T extends CacheableObject> extends BaseDataService<T> implements CreateData<T> {
|
||||
constructor(
|
||||
protected linkPath: string,
|
||||
protected responseMsToLive: number,
|
||||
protected requestService: RequestService,
|
||||
protected rdbService: RemoteDataBuildService,
|
||||
protected objectCache: ObjectCacheService,
|
||||
protected halService: HALEndpointService,
|
||||
protected notificationsService: NotificationsService,
|
||||
protected responseMsToLive: number,
|
||||
) {
|
||||
super(requestService, rdbService, objectCache, halService, linkPath, responseMsToLive);
|
||||
super(linkPath, requestService, rdbService, objectCache, halService, responseMsToLive);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user