You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
931 B
47 lines
931 B
// export class Orders{
|
|
// id? : number;
|
|
// name? : string ;
|
|
// price? : number;
|
|
// deliveryStatus? : string;
|
|
|
|
// constructor()
|
|
// {
|
|
// this.id=0;
|
|
// this.name='' ;
|
|
// this.price=0 ;
|
|
// this.deliveryStatus='';
|
|
// }
|
|
// }
|
|
|
|
export class Orders{
|
|
id? : number;
|
|
quantity? : number ;
|
|
totalPrice? : number;
|
|
uid? : number;
|
|
username? :String;
|
|
pid? : number;
|
|
pname? : String;
|
|
}
|
|
// export class Product{
|
|
|
|
// productid? : number;
|
|
// name? : string ;
|
|
// price? : number;
|
|
// category? : string;
|
|
// imag? : string;
|
|
// }
|
|
// export class Account{
|
|
|
|
// id? : number;
|
|
// username? : any ;
|
|
// password? : string;
|
|
// fullname? : string;
|
|
// gender? : string;
|
|
// phone? : number;
|
|
// email? : string;
|
|
// address? : string;
|
|
// city? : string;
|
|
// state? : string;
|
|
// pincode? : number;
|
|
// apartments? : string;
|
|
// }
|