1
2
3
4
5
6
7
8
9
10
11
12
13
| import { JnpfSheetsFloatEchartService } from '../services/sheet-float-echart.service';
|
| export class JnpfFacadeSheetsFloatEchart {
| constructor(private readonly _jnpfSheetsFloatEchartService: JnpfSheetsFloatEchartService) {}
|
| clearFocusDrawingId() {
| this._jnpfSheetsFloatEchartService.clearFocusDrawingId();
| }
|
| savePiniaStoreId(value: any) {
| this._jnpfSheetsFloatEchartService.savePiniaStoreId(value);
| }
| }
|
|