예제 #1
0
 public PrivateLesson(Guid id, Guid studnetId, DateTime relevantTo, string description, SchoolSubject subject, double time)
 {
     Id        = id;
     StudentId = studnetId;
     CreatedAt = DateTime.UtcNow;
     SetRelevantToDate(relevantTo);
     SetDesctiption(description);
     SchoolSubject = subject;
     UpdatedAt     = null;
     IsPaid        = false;
     IsDone        = false;
     SetTime(time);
 }
예제 #2
0
 public void SetSchoolSubject(SchoolSubject schoolSubject)
 {
     SchoolSubject = schoolSubject;
 }