예제 #1
0
 public DepartmentInfoController(IDepartmentInfoBusiness business)
 {
     this._departmentInfo = business;
 }
 public DepartmentInfoController(IDepartmentInfoBusiness facultyInfo, IFacultyInfoBusiness universityInfo)
 {
     db = new PiDataDbContext();
     this._departmenInfo = facultyInfo;
     this._facultyInfo   = universityInfo;
 }
예제 #3
0
 public HomeDepartmentController(IDepartmentInfoBusiness university,
                                 IAcademicCalendarBusiness academic)
 {
     this._academicCalendar = academic;
     this._departmentInfo   = university;
 }