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

@ -0,0 +1,33 @@
import { Moment } from 'moment';
export interface ISepaMandate {
id?: number;
reference?: string;
iban?: string;
bic?: string;
created?: Moment;
validFrom?: Moment;
validTo?: Moment;
lastUsed?: Moment;
cancelled?: Moment;
comment?: string;
customerPrefix?: string;
customerId?: number;
}
export class SepaMandate implements ISepaMandate {
constructor(
public id?: number,
public reference?: string,
public iban?: string,
public bic?: string,
public created?: Moment,
public validFrom?: Moment,
public validTo?: Moment,
public lastUsed?: Moment,
public cancelled?: Moment,
public comment?: string,
public customerPrefix?: string,
public customerId?: number
) {}
}