93803: Resolve circular dependency

src/app/core/cache/builders/build-decorators.ts > src/app/core/data/base/hal-data-service.interface.ts > src/app/core/data/paginated-list.model.ts
This commit is contained in:
Yura Bondarenko
2022-08-25 10:06:37 +02:00
parent a76555c518
commit ad316f7316
51 changed files with 155 additions and 128 deletions

View File

@@ -1,5 +1,4 @@
import { Injectable } from '@angular/core';
import { dataService } from '../cache/builders/build-decorators';
import { RemoteDataBuildService } from '../cache/builders/remote-data-build.service';
import { ObjectCacheService } from '../cache/object-cache.service';
import { HALEndpointService } from '../shared/hal-endpoint.service';
@@ -10,6 +9,7 @@ import { Observable } from 'rxjs';
import { RemoteData } from './remote-data';
import { Item } from '../shared/item.model';
import { BaseDataService } from './base/base-data.service';
import { dataService } from './base/data-service.decorator';
@Injectable()
@dataService(ACCESS_STATUS)