Skip to content
This repository was archived by the owner on Jan 21, 2022. It is now read-only.

Commit f6edaae

Browse files
committed
change access modifiers
1 parent 915c86f commit f6edaae

5 files changed

Lines changed: 24 additions & 4 deletions

File tree

Model/InterestsData.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@
44

55
namespace Model
66
{
7-
class InterestsData
7+
public class InterestsData
88
{
9+
10+
public InterestsData(Student student)
11+
{
12+
13+
}
14+
915
}
1016
}

Model/Media.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ public class Media
1414
public Media(Student student)
1515
{
1616
Student = student;
17+
//set picture data
1718
}
1819

1920
}

Model/MoralsData.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@
44

55
namespace Model
66
{
7-
class MoralsData
7+
public class MoralsData
88
{
9+
10+
public MoralsData(Student student)
11+
{
12+
13+
}
14+
915
}
1016
}

Model/QAData.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@
44

55
namespace Model
66
{
7-
class QAData
7+
public class QAData
88
{
9+
10+
public QAData(Student student)
11+
{
12+
13+
}
14+
15+
916
}
1017
}

Model/Student.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class Student
1313
//public Account Account { get; set; }
1414
public string Email { get; set; }
1515
public string Eduction { get; set; }
16-
public string Address { get; set; } //address class
16+
public string Address { get; set; }
1717
public DateTime DateOfBirth { get; set; }
1818
public School School { get; set; }
1919
public HashSet<Relationships> Relationships { get; set; }

0 commit comments

Comments
 (0)