15 lines
351 B
TypeScript
15 lines
351 B
TypeScript
import { ProductSaleReportItem } from './product-sale-report-item';
|
|
|
|
export class ProductSaleReport {
|
|
startDate: string;
|
|
finishDate: string;
|
|
amounts: ProductSaleReportItem[];
|
|
|
|
public constructor(init?: Partial<ProductSaleReport>) {
|
|
this.startDate = '';
|
|
this.finishDate = '';
|
|
this.amounts = [];
|
|
Object.assign(this, init);
|
|
}
|
|
}
|