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