예제 #1
0
 public IdentityService(
     ISchoolDac schoolDac,
     ISchoolYearDac schoolYearDac
     )
 {
     this.schoolDac     = schoolDac;
     this.schoolYearDac = schoolYearDac;
 }
예제 #2
0
 public SchoolController(
     IEducationAreaDac educationAreaDac,
     ISchoolDac schoolDac
     )
 {
     this.educationAreaDac = educationAreaDac;
     this.schoolDac        = schoolDac;
 }