/Users/johnr/Desktop/IA_14_-_Stage_P_Upload_all_2021-04-08/CSIA_TeacherOrganizer_19927 Marazal March 25th/src/Parent.java
 1 /*
 2  * To change this license header, choose License Headers in Project Properties.
 3  * To change this template file, choose Tools | Templates
 4  * and open the template in the editor.
 5  */
 6 
 7 
 8 /**
 9  *
10  * @author 19927
11  */
12 public class Parent {
13     private String parentName = "not set yet";
14     private int parentMobile = 0;
15     private String parentEmail = "not set yet";
16     
17     public Parent(){
18     }
19     
20     public Parent(String parentName, int parentMobile, String parentEmail){
21         this.parentName = parentName;
22         this.parentMobile = parentMobile;
23         this.parentEmail = parentEmail;
24     }
25 
26     
27     public String getparentName(){
28         return parentName;
29     }
30     public int getparentMobile(){
31         return parentMobile;
32     }
33     public String getparentEmail(){
34         return parentEmail;
35     }
36     
37 }
38