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; }
public OrderMatchesController(IOrderMatchesService orderMatchesService) { _orderMatchesService = orderMatchesService; }