mirror of
https://github.com/brendan-ch/project-inter-server.git
synced 2026-04-17 16:00:32 +00:00
add system entity as class (holder for shuttle repo and loader)
This commit is contained in:
11
src/entities/System.ts
Normal file
11
src/entities/System.ts
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
import { ShuttleGetterSetterRepository } from "../repositories/ShuttleGetterSetterRepository";
|
||||||
|
import { ShuttleRepositoryLoader } from "../loaders/ShuttleRepositoryLoader";
|
||||||
|
|
||||||
|
class System {
|
||||||
|
constructor(
|
||||||
|
public systemId: string,
|
||||||
|
public shuttleRepository: ShuttleGetterSetterRepository,
|
||||||
|
public shuttleDataLoader: ShuttleRepositoryLoader,
|
||||||
|
) {
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user