export interface IDClassInterface {
    setID(id: string | null): this;
    getID(): string | null;
}
