red-ui/libs/red-cache/src/lib/caches/id-to-object-cache.register.service.ts
2021-05-10 16:13:24 +03:00

12 lines
343 B
TypeScript

import { IdToObjectListCacheStoreService } from './id-to-object-list-cache-store.service';
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class IdToObjectCacheRegisterService {
constructor(private _idToObjectListCacheStoreService: IdToObjectListCacheStoreService) {}
registerCaches() {}
}