Broker System for Supercredit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- import {PayInAAARowModel} from './Pay.In.AAA.Row.model';
-
- export class FunderAaaTrailModel{
- public Period: Date; // valid only year, and month
- public Rows: PayInAAARowModel[];
- constructor(payload: Partial<FunderAaaTrailModel>) {
- this.Period = new Date(payload.Period);
- this.Rows = [];
- if ( payload.Rows ){
- payload.Rows.forEach( v => {
- this.Rows.push (new PayInAAARowModel(v));
- });
- }
- }
- }
|