Ejemplo n.º 1
0
 public StudentFacade(IStudentService studentService,
                      ITeacherService teacherService,
                      CommonUnitofWork commonUnitofWork)
 {
     this.studentService   = studentService;
     this.teacherService   = teacherService;
     this.commonUnitofWork = commonUnitofWork;
 }
 public StudentService(CommonUnitofWork uow)
 {
     this.uow = uow;
 }