コード例 #1
0
 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;
 }
コード例 #2
0
 public OrderMatchesController(IOrderMatchesService orderMatchesService)
 {
     _orderMatchesService = orderMatchesService;
 }