-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudentClass.cs
More file actions
100 lines (83 loc) · 2.86 KB
/
Copy pathStudentClass.cs
File metadata and controls
100 lines (83 loc) · 2.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*Gavin Rodgers
* 3309 Owl Member Community project IV
* This is the Students class that stores the student object information
* Last Edited: 12/11/18
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
// For serialization
using System.Runtime.Serialization.Formatters.Binary;
using OwlCommunityFinal.Classes;
namespace OwlCommunityFinal
{
// Client inherits the data and methods in Person
[Serializable()]
abstract class Student : OwlMemberClass
{
private string hiddenStudentMajor;
private string hiddenStudentGPA;
// Parameterless Constructor
public Student()
{
hiddenStudentMajor = "";
hiddenStudentGPA = "";
} // end Employee Parameterless Constructor
// Parameterized Constructor
public Student(string name, string id, string dob, // For Person Constructor
string major, string gpa) : base(id, name, dob)
{
hiddenStudentMajor = major;
hiddenStudentGPA = gpa;
} // end Employee Parameterized Constructor
// Accessor/mutator for job title
public string studentMajor
{
get
{
return hiddenStudentMajor;
} // end get
set // (string value)
{
hiddenStudentMajor = value;
} // end get
} // end Property
// Accessor/mutator for job title
public string studentGPA
{
get
{
return hiddenStudentGPA;
} // end get
set // (string value)
{
hiddenStudentGPA = value;
} // end get
} // end Property
// Save data from form to object
internal override void Save(frmOwlCommunity f)
{
base.Save(f);
hiddenStudentMajor = f.txtStudentMajor.Text;
hiddenStudentGPA = f.txtStudentGPA.Text;
} // end Save
// Display data in object on form
internal override void Display(frmOwlCommunity f)
{
base.Display(f);
f.txtStudentMajor.Text = hiddenStudentMajor;
f.txtStudentGPA.Text = hiddenStudentGPA.ToString();
} // end Display
// This toString function overrides the Object toString
// function. The base refers to Object because this class
// inherits Object by default.
public override string ToString()
{
string s = base.ToString() + "\n";
s += "Student Info: " + hiddenStudentGPA + hiddenStudentGPA.ToString(); ;
return s;
} // end ToString
} // end Student class
} // end namespace