public AwbUpdateManagerWithEvent(
     IAwbRepository awbs,
     IEventFacade events,
     IAwbUpdateManager manager)
 {
     _awbs    = awbs;
     _events  = events;
     _manager = manager;
 }
Beispiel #2
0
 public BrokerAwbController(
     IStateConfig stateConfig,
     IAwbRepository awbRepository,
     IAwbUpdateManager awbUpdateManager)
 {
     _stateConfig      = stateConfig;
     _awbRepository    = awbRepository;
     _awbUpdateManager = awbUpdateManager;
 }
Beispiel #3
0
 public AwbUpdateGtdManager(
     IAwbGtdHelper gtdHelper,
     IAwbUpdateManager manager,
     IAwbRepository awbRepository)
 {
     _gtdHelper     = gtdHelper;
     _manager       = manager;
     _awbRepository = awbRepository;
 }
		public AwbUpdateManagerWithEvent(
			IAwbRepository awbs,
			IEventFacade events,
			IAwbUpdateManager manager)
		{
			_awbs = awbs;
			_events = events;
			_manager = manager;
		}
Beispiel #5
0
 public AwbUpdateGtdManager(
     IAwbGtdHelper gtdHelper,
     IAwbUpdateManager manager,
     IAwbRepository awbRepository)
 {
     _gtdHelper = gtdHelper;
     _manager = manager;
     _awbRepository = awbRepository;
 }
Beispiel #6
0
		public BrokerAwbController(
			IStateConfig stateConfig,
			IAwbRepository awbRepository,
			IAwbUpdateManager awbUpdateManager)
		{
			_stateConfig = stateConfig;
			_awbRepository = awbRepository;
			_awbUpdateManager = awbUpdateManager;
		}
Beispiel #7
0
 public SenderAwbController(
     IIdentityService identity,
     IAwbUpdateManager awbUpdateManager,
     IAwbManager awbManager,
     IAwbPresenter awbPresenter)
 {
     _identity         = identity;
     _awbUpdateManager = awbUpdateManager;
     _awbManager       = awbManager;
     _awbPresenter     = awbPresenter;
 }
Beispiel #8
0
		public SenderAwbController(
			IIdentityService identity,
			IAwbUpdateManager awbUpdateManager,
			IAwbManager awbManager,
			IAwbPresenter awbPresenter)
		{
			_identity = identity;
			_awbUpdateManager = awbUpdateManager;
			_awbManager = awbManager;
			_awbPresenter = awbPresenter;
		}
Beispiel #9
0
		public AdminAwbController(
			IIdentityService identity,
			IAwbManager awbManager,
			IAwbPresenter awbPresenter,
			IAwbUpdateManager awbUpdateManager,
			IBrokerRepository brokers,
			ISenderRepository senders)
		{
			_identity = identity;
			_awbManager = awbManager;
			_awbPresenter = awbPresenter;
			_awbUpdateManager = awbUpdateManager;
			_brokers = brokers;
			_senders = senders;
		}
Beispiel #10
0
 public CalculationController(
     IAwbUpdateManager awbUpdater,
     IAdminCalculationPresenter presenter,
     ICalculationService calculation,
     IIdentityService identity,
     IAdminApplicationManager applications,
     IClientBalanceRepository balances)
 {
     _awbUpdater   = awbUpdater;
     _presenter    = presenter;
     _calculation  = calculation;
     _identity     = identity;
     _applications = applications;
     _balances     = balances;
 }
Beispiel #11
0
 public AdminAwbController(
     IIdentityService identity,
     IAwbManager awbManager,
     IAwbPresenter awbPresenter,
     IAwbUpdateManager awbUpdateManager,
     IBrokerRepository brokers,
     ISenderRepository senders)
 {
     _identity         = identity;
     _awbManager       = awbManager;
     _awbPresenter     = awbPresenter;
     _awbUpdateManager = awbUpdateManager;
     _brokers          = brokers;
     _senders          = senders;
 }
Beispiel #12
0
		public CalculationController(
			IAwbUpdateManager awbUpdater,
			IAdminCalculationPresenter presenter,
			ICalculationService calculation,
			IIdentityService identity,
			IAdminApplicationManager applications,
			IClientBalanceRepository balances)
		{
			_awbUpdater = awbUpdater;
			_presenter = presenter;
			_calculation = calculation;
			_identity = identity;
			_applications = applications;
			_balances = balances;
		}