import { DataBase } from "./database" export class Model { constructor(private database: DataBase) { } queryForList(): Array { return [] } }