Beispiel #1
0
 public DepartmentService(IUnitOfWork unitOfWork, IDepartmentRepository departmentRepository)
 {
     _unitOfWork           = unitOfWork;
     _departmentRepository = departmentRepository;
     _bioStarDbContext     = new BioStarDbContext();
     _applicationDbContext = new ApplicationDbContext();
 }
Beispiel #2
0
 public BioStarService()
 {
     _bioStarDbContext = new BioStarDbContext();
 }
Beispiel #3
0
 public EventLogService()
 {
     _bioStarDbContext     = new BioStarDbContext();
     _applicationDbContext = new ApplicationDbContext();
 }