public NominationService(Silicus.Encourage.DAL.Interfaces.IDataContextFactory dataContextFactory, ICommonDbService commonDbService, ILogger logger, ICustomDateService customDateService)
 {
     _commonDataBaseContext    = commonDbService.GetCommonDataBaseContext();
     _encourageDatabaseContext = dataContextFactory.CreateEncourageDbContext();
     _logger            = logger;
     _customDateService = customDateService;
 }
Beispiel #2
0
 public ProjectService(IDataContextFactory dataContextFactory, IEmployeeService employeeService, ICommonMapper commonMapper)
 {
     _context                = dataContextFactory.Create(ConnectionType.Ip);
     _employeeService        = employeeService;
     _commonMapper           = commonMapper;
     _utilityCommonDbContext = _commonMapper.GetCommonDataBAseContext();
 }
Beispiel #3
0
 public AwardService(IDataContextFactory contextFactory, ICommonDbService commonDbService, INominationService nominationService, ICustomDateService customDateService)
 {
     _encourageDbcontext = contextFactory.CreateEncourageDbContext();
     _CommonDbContext    = commonDbService.GetCommonDataBaseContext();
     _nominationService  = nominationService;
     _customDateService  = customDateService;
 }
Beispiel #4
0
 public HomeController(ICommonDbService commonDbService, IDataContextFactory dataContextFactory,
                       INominationService nominationService, IResultService resultService, ILogger logger, ICustomDateService customDateService)
 {
     _commonDbService          = commonDbService;
     _encourageDatabaseContext = dataContextFactory.CreateEncourageDbContext();
     _commonDbContext          = commonDbService.GetCommonDataBaseContext();
     _nominationService        = nominationService;
     _resultService            = resultService;
     _logger            = logger;
     _customDateService = customDateService;
 }
Beispiel #5
0
 public ResultService(Silicus.Encourage.DAL.Interfaces.IDataContextFactory dataContextFactory, ICommonDbService commonDbService, ICustomDateService customDateService)
 {
     _commonDataBaseContext    = commonDbService.GetCommonDataBaseContext();
     _encourageDatabaseContext = dataContextFactory.CreateEncourageDbContext();
     _customDateService        = customDateService;
 }