示例#1
0
 public CompanyController(ICompanyDAL companyDAL, IPreferencesDAL preferencesDAL)
 {
     this.companyDAL     = companyDAL;
     this.preferencesDAL = preferencesDAL;
 }
示例#2
0
 public StudentsController(IStudentDAL studentDAL, ICompanyDAL companyDAL, IPreferencesDAL preferencesDAL)
 {
     this.studentDAL     = studentDAL;
     this.companyDAL     = companyDAL;
     this.preferencesDAL = preferencesDAL;
 }