/Users/johnr/Desktop/IA pdf Downloads/Criteria__P__-_Coding_Project_Upload_all_2022-05-03/SPVCPortal_Panpan/src/main/java/com/mycompany/spvcportal/PhoneOrder.java
 1 /*
 2  * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
 3  * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
 4  */
 5 package com.mycompany.spvcportal;
 6 
 7 /**
 8  *
 9  * @author 18916
10  */
11 public class PhoneOrder extends Order {
12     
13     String phoneNum = "not set yet";
14     
15     public PhoneOrder(int orderID, String buyerName, String date, String orderChannel, String address, String productName, double quantityOfProduct, double pricePerUnit, String phoneNum){
16         super(orderID, buyerName, date, orderChannel, address, productName, quantityOfProduct, pricePerUnit);
17         this.phoneNum = phoneNum;
18     }
19     
20     public String getPhoneNum(){
21         return phoneNum;
22     }
23     
24 }
25