2021-03-01 23:35:52 +00:00
|
|
|
import { IViewWrapper } from "./document-wrapper";
|
|
|
|
import { FootNotes } from "./footnotes/footnotes";
|
|
|
|
import { Relationships } from "./relationships";
|
|
|
|
|
|
|
|
export class FootnotesWrapper implements IViewWrapper {
|
|
|
|
private readonly footnotess: FootNotes;
|
|
|
|
private readonly relationships: Relationships;
|
|
|
|
|
2022-08-31 07:52:27 +01:00
|
|
|
public constructor() {
|
2021-03-01 23:35:52 +00:00
|
|
|
this.footnotess = new FootNotes();
|
|
|
|
this.relationships = new Relationships();
|
|
|
|
}
|
|
|
|
|
|
|
|
public get View(): FootNotes {
|
|
|
|
return this.footnotess;
|
|
|
|
}
|
|
|
|
|
|
|
|
public get Relationships(): Relationships {
|
|
|
|
return this.relationships;
|
|
|
|
}
|
|
|
|
}
|