export interface Price {
    payType: number;
    price: number;
    payment: any;
}
export interface ProductInterface {
    iGetPrice(): Price;
}
