public Enrollment(int Id, DateTime CancellationDate, DateTime EnrollmentTime, bool UniquePayment, Absence a, Student student, TaughtCourse tg)
 {
     this.CancellationDate = CancellationDate;
     this.EnrollmentDate   = EnrollmentTime;
     this.Id            = Id;
     this.UniquePayment = UniquePayment;
     Absences           = new List <Absence>();
     Student            = student;
     TaughtCourse       = tg;
 }
Exemple #2
0
 public Enrollment(int v1, DateTime now1, DateTime now2, bool v2, Student s, TaughtCourse v3)
 {
     this.Id               = v1;
     this.EnrollmentDate   = now1;
     this.CancellationDate = now2;
     this.UniquePayment    = v2;
     this.Student          = s;
     this.TaughtCourse     = v3;
     this.Absences         = new List <Absence>();
 }
 public Enrollment(int id, DateTime enrollmentDate, DateTime cancellationDate, Boolean uniquePayment, Student student, TaughtCourse tc)
 {
     this.CancellationDate = cancellationDate;
     this.EnrollmentDate   = enrollmentDate;
     this.Id            = id;
     this.UniquePayment = uniquePayment;
     this.Student       = student;
     this.TaughtCourse  = tc;
     Absences           = new List <Absence>();
 }