public UniMicroMatchingService(IMapper mapper, UniMicroExternalDataService externalDataService,
                                IEmployeeService employeeService,
                                IUnitService unitService,
                                IAbsenceTypeService absenceTypeService)
 {
     _mapper = mapper;
     _externalDataService = externalDataService;
     _employeeService     = employeeService;
     _unitService         = unitService;
     _absenceTypeService  = absenceTypeService;
 }
 public StockService(IExternalDataService externalApi, IStockRepository stockRepository, IMapper mapper)
 {
     _externalApi     = externalApi;
     _stockRepository = stockRepository;
     _mapper          = mapper;
 }
Example #3
0
 public MatchService(IUnitOfWork unitOfWork, IExternalDataService externalDataService)
 {
     this.unitOfWork          = unitOfWork;
     this.externalDataService = externalDataService;
 }
 public CustomerService(IExternalDataService externDataService)
 {
 public HomeController(IExternalDataService externalDataService, ILogFactory logFactory)
 {
     this.externalDataService = externalDataService;
     logService = logFactory.CreateLogger <AccountController>();
 }
Example #6
0
 public SyncingDataService(IExternalDataService source, IInternalDataService target)
 {
     _remoteStorage = source;
     _localStorage  = target;
 }