1
0

Model customers.

This commit is contained in:
Michael Hierweck
2019-04-17 16:45:43 +02:00
parent bd5bb859d9
commit 7f0dfebaa4
160 changed files with 3911 additions and 5068 deletions

View File

@ -4,8 +4,9 @@ import { IAsset } from 'app/shared/model/asset.model';
export interface IMembership {
id?: number;
sinceDate?: Moment;
untilDate?: Moment;
from?: Moment;
to?: Moment;
comment?: string;
shares?: IShare[];
assets?: IAsset[];
customerPrefix?: string;
@ -15,8 +16,9 @@ export interface IMembership {
export class Membership implements IMembership {
constructor(
public id?: number,
public sinceDate?: Moment,
public untilDate?: Moment,
public from?: Moment,
public to?: Moment,
public comment?: string,
public shares?: IShare[],
public assets?: IAsset[],
public customerPrefix?: string,