public ClassRepository(ISchoolDatabase schoolDatabase)
 {
     _schoolDatabase = schoolDatabase;
 }
 public CreateTeacherCommand(ISchoolFactory schoolFactory, ISchoolDatabase schoolDatabase)
 {
     this.schoolFactory  = schoolFactory;
     this.schoolDatabase = schoolDatabase;
 }
 public CreateStudentCommand(ISchoolFactory schoolFactory, ISchoolDatabase schoolDadtabase)
 {
     this.schoolFactory  = schoolFactory;
     this.schoolDatabase = schoolDadtabase;
 }
Esempio n. 4
0
 public TeacherAddMarkCommand(ISchoolDatabase schoolDatabase)
 {
     this.schoolDatabase = schoolDatabase;
 }
 public ClassRepository(ISchoolDatabase schoolDatabase)
 {
     _schoolDatabase = schoolDatabase;
 }
 public RemoveTeacherCommand(ISchoolDatabase schoolDatabase)
 {
     this.schoolDatabase = schoolDatabase;
 }
 public RemoveStudentCommand(ISchoolDatabase schoolDatabase)
 {
     this.schoolDatabase = schoolDatabase;
 }
Esempio n. 8
0
 public StudentRepository(ISchoolDatabase schoolDatabase, IDateTime dateTime = null !)
 {
     this.schoolDatabase = schoolDatabase;
     this.dateTime       = dateTime ?? new DefaultDateTime();
 }
Esempio n. 9
0
 public School(ISchoolDatabase schoolDatabase)
 {
     SchoolDatabase = schoolDatabase;
 }
Esempio n. 10
0
 public StudentListMarksCommand(ISchoolDatabase schoolDatabase)
 {
     this.schoolDatabase = schoolDatabase;
 }