public LoadCarrierReceiptsService(
     IAuthorizationDataService authData,
     IMapper mapper,
     Dal.OlmaDbContext olmaDbContext,
     IRepository <Olma.LoadCarrierReceipt> olmaLoadCarrierReceiptRepo,
     IRepository <Olma.LoadCarrier> olmaLoadCarrierRepo,
     IRepository <Olma.CustomerPartner> olmaCustomerPartnerRepo,
     IRepository <Olma.CustomerDivision> olmaCustomerDivisionRepo,
     ISynchronizationsService synchronizationsService,
     INumberSequencesService numberSequencesService,
     IDocumentsService documentsService,
     Reporting.IReportGeneratorService reportGeneratorService,
     IPostingRequestsService postingRequestsService,
     IServiceProvider serviceProvider) : base(authData, mapper)
 {
     _olmaDbContext = olmaDbContext;
     _olmaLoadCarrierReceiptRepo = olmaLoadCarrierReceiptRepo;
     _olmaLoadCarrierRepo        = olmaLoadCarrierRepo;
     _olmaCustomerPartnerRepo    = olmaCustomerPartnerRepo;
     _olmaCustomerDivisionRepo   = olmaCustomerDivisionRepo;
     _numberSequencesService     = numberSequencesService;
     _documentsService           = documentsService;
     _reportGeneratorService     = reportGeneratorService;
     _postingRequestsService     = postingRequestsService;
     _serviceProvider            = serviceProvider;
     _synchronizationsService    = synchronizationsService;
 }
Beispiel #2
0
 public VouchersService(
     IAuthorizationDataService authData,
     IAuthorizationService authService,
     IMapper mapper,
     Dal.OlmaDbContext olmaDbContext,
     IServiceProvider serviceProvider,
     IRepository <Olma.Voucher> olmaVoucherRepo,
     IRepository <Olma.CustomerPartner> olmaCustomerPartnerRepo,
     IRepository <Olma.PartnerDirectory> olmaPartnerDirectoryRepo,
     IRepository <Olma.Partner> olmaPartnerRepo,
     INumberSequencesService numberSequencesService,
     IDocumentTypesService documentTypesService,
     IDocumentsService documentsService,
     IPostingRequestsService postingRequestsService,
     Reporting.IReportGeneratorService reportGeneratorService,
     ISynchronizationsService synchronizationsService) : base(authData, authService, mapper)
 {
     _olmaDbContext            = olmaDbContext;
     _serviceProvider          = serviceProvider;
     _olmaVoucherRepo          = olmaVoucherRepo;
     _olmaCustomerPartnerRepo  = olmaCustomerPartnerRepo;
     _olmaPartnerDirectoryRepo = olmaPartnerDirectoryRepo;
     _olmaPartnerRepo          = olmaPartnerRepo;
     _numberSequencesService   = numberSequencesService;
     _documentTypesService     = documentTypesService;
     _documentsService         = documentsService;
     _reportGeneratorService   = reportGeneratorService;
     _synchronizationsService  = synchronizationsService;
     _postingRequestsService   = postingRequestsService;
 }
Beispiel #3
0
 public OrdersService(
     IAuthorizationDataService authData,
     IMapper mapper,
     IRepository <Olma.Order> olmaOrderRepo,
     ISynchronizationsService synchronizationsService,
     IServiceProvider serviceProvider
     ) : base(authData, mapper)
 {
     _olmaOrderRepo           = olmaOrderRepo;
     _synchronizationsService = synchronizationsService;
     _serviceProvider         = serviceProvider;
 }
 public PostingRequestsService(
     IAuthorizationDataService authData,
     IMapper mapper,
     ISynchronizationsService synchronizationsService,
     IRepository <Olma.PostingRequest> olmaPostingRequestRepo,
     IRepository <Olma.LoadCarrier> olmaLoadCarrierRepo,
     INumberSequencesService numberSequencesService) : base(authData, mapper)
 {
     _olmaPostingRequestRepo  = olmaPostingRequestRepo;
     _olmaLoadCarrierRepo     = olmaLoadCarrierRepo;
     _synchronizationsService = synchronizationsService;
     _numberSequencesService  = numberSequencesService;
 }
 public OrderGroupsService(
     IAuthorizationDataService authData,
     IMapper mapper,
     Dal.OlmaDbContext olmaDbContext,
     IRepository <Olma.OrderGroup> olmaOrderGroupRepo,
     IOrderMatchesService orderMatchesService,
     ISynchronizationsService synchronizationsService,
     INumberSequencesService numberSequencesService,
     ILoadCarriersService loadCarriersService,
     IServiceProvider serviceProvider
     ) : base(authData, mapper)
 {
     _olmaDbContext           = olmaDbContext;
     _olmaOrderGroupRepo      = olmaOrderGroupRepo;
     _orderMatchesService     = orderMatchesService;
     _synchronizationsService = synchronizationsService;
     _numberSequencesService  = numberSequencesService;
     _loadCarriersService     = loadCarriersService;
     _serviceProvider         = serviceProvider;
 }