-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFacade.ts
45 lines (37 loc) · 927 Bytes
/
Facade.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
class EngineSystem {
activate() {
console.log('Activate the engine');
}
}
class MonitorSystem {
check() {
console.log('Check system situations');
}
}
class OxygenSystem {
generate() {
console.log('Oxygen will be generated');
}
}
class RocketTestingOperation {
private _engineSys: EngineSystem;
private _monitorSys: MonitorSystem;
private _oxygenSys: OxygenSystem;
constructor() {
this._engineSys = new EngineSystem();
this._monitorSys = new MonitorSystem();
this._oxygenSys = new OxygenSystem();
}
operationStart() {
this._monitorSys.check();
this._oxygenSys.generate();
this._engineSys.activate();
}
}
// USAGE:
const operation = new RocketTestingOperation();
operation.operationStart();
// OUTPUT:
// "Check system situations"
// "Oxygen will be generated"
// "Activate the engine"