Initial Commit
This commit is contained in:
14
otis/src/app/discount-report/discount-report.ts
Normal file
14
otis/src/app/discount-report/discount-report.ts
Normal file
@ -0,0 +1,14 @@
|
||||
import { DiscountReportItem } from './discount-report-item';
|
||||
|
||||
export class DiscountReport {
|
||||
startDate: string;
|
||||
finishDate: string;
|
||||
amounts: DiscountReportItem[];
|
||||
|
||||
public constructor(init?: Partial<DiscountReport>) {
|
||||
this.startDate = '';
|
||||
this.finishDate = '';
|
||||
this.amounts = [];
|
||||
Object.assign(this, init);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user