main
Line | |
---|
1 | import { Address } from "../models";
|
---|
2 |
|
---|
3 | export interface Customer{
|
---|
4 | customerId: number;
|
---|
5 | customerTypeId: number;
|
---|
6 | customerName: string;
|
---|
7 | customerEmail: string;
|
---|
8 | customerPhoneNumber: string;
|
---|
9 | address: Address;
|
---|
10 | }
|
---|
11 |
|
---|
12 | export 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.