예제 #1
0
 public PotentialStudentService(IPotentialStudentRepository potentialStudentRepository, IUnitOfWork unitOfWork)
 {
     this._potentialStudentRepository = potentialStudentRepository;
     this._unitOfWork = unitOfWork;
 }
 public PotentialStudentDS(PotentialStudentAPIRepository potentialStudentAPIRepo,
                           PotentialStudentRepository potentialStudentSQLiteRepo)
 {
     _potentialStudentAPIRepo    = potentialStudentAPIRepo;
     _potentialStudentSQLiteRepo = potentialStudentSQLiteRepo;
 }