Feature: The guestbook now autocompletes on phone number
This commit is contained in:
12
bookie/src/app/guest-book/customer.ts
Normal file
12
bookie/src/app/guest-book/customer.ts
Normal file
@ -0,0 +1,12 @@
|
||||
export class Customer {
|
||||
name: string;
|
||||
phone: string;
|
||||
address: string;
|
||||
|
||||
public constructor(init?: Partial<Customer>) {
|
||||
this.name = '';
|
||||
this.phone = '';
|
||||
this.address = '';
|
||||
Object.assign(this, init);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user