source: WineTrackerFinal/WineTrackerUI/WineTracker/src/app/CustomerEntity/customerModelDefinition.ts

main
Last change on this file was 04008ae, checked in by Nikola Mishevski <Nikola.Mishevski@…>, 6 days ago

WineTracker UI Added to Git

  • Property mode set to 100644
File size: 455 bytes
Line 
1import { Address } from "../models";
2
3export interface Customer{
4 customerId: number;
5 customerTypeId: number;
6 customerName: string;
7 customerEmail: string;
8 customerPhoneNumber: string;
9 address: Address;
10}
11
12export interface CustomerDetails{
13 customerId: number;
14 customerTypeName: string;
15 addressId: number;
16 customerName: string;
17 customerAddress: string;
18 customerEmail: string;
19 customerPhoneNumber: string;
20}
Note: See TracBrowser for help on using the repository browser.