Example #1
0
 public Teacher(string grade, Borrower borrower)
 {
     this.Grade    = grade;
     this.Borrower = borrower;
 }
Example #2
0
 public Borrowing(Borrower borrower, Work work, string date)
 {
     this.Borrower = borrower;
     this.Work     = work;
     this.Date     = date;
 }
Example #3
0
 public Student(Borrower borrower, string specialty, string level)
 {
     this.Specialty = specialty;
     this.Level     = level;
     this.Borrower  = borrower;
 }