import { Account } from '../core/account'; import { LedgerItem } from './ledger-item'; export class Ledger { startDate: string; finishDate: string; account: Account; body: LedgerItem[]; public constructor(init?: Partial) { this.startDate = ''; this.finishDate = ''; this.account = new Account(); this.body = []; Object.assign(this, init); } }