Broker System for Supercredit
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

funder.aaa.trail.model.ts 438B

123456789101112131415
  1. import {PayInAAARowModel} from './Pay.In.AAA.Row.model';
  2. export class FunderAaaTrailModel{
  3. public Period: Date; // valid only year, and month
  4. public Rows: PayInAAARowModel[];
  5. constructor(payload: Partial<FunderAaaTrailModel>) {
  6. this.Period = new Date(payload.Period);
  7. this.Rows = [];
  8. if ( payload.Rows ){
  9. payload.Rows.forEach( v => {
  10. this.Rows.push (new PayInAAARowModel(v));
  11. });
  12. }
  13. }
  14. }