Пример #1
0
 public AwbManager(
     IAwbRepository awbs,
     IEventFacade events,
     IStateConfig stateConfig,
     IApplicationAwbManager applicationAwbManager,
     IApplicationRepository applications,
     IApplicationEditor editor)
 {
     _awbs                  = awbs;
     _events                = events;
     _stateConfig           = stateConfig;
     _applicationAwbManager = applicationAwbManager;
     _applications          = applications;
     _editor                = editor;
 }
Пример #2
0
		public AwbManager(
			IAwbRepository awbs,
			IEventFacade events,
			IStateConfig stateConfig,
			IApplicationAwbManager applicationAwbManager,
			IApplicationRepository applications,
			IApplicationEditor editor)
		{
			_awbs = awbs;
			_events = events;
			_stateConfig = stateConfig;
			_applicationAwbManager = applicationAwbManager;
			_applications = applications;
			_editor = editor;
		}
Пример #3
0
 public AirWaybillController(
     IAwbPresenter awbPresenter,
     IApplicationAwbManager applicationAwbManager,
     IAwbManager awbManager,
     IStateConfig config,
     IAwbRepository awbs,
     IAwbStateManager awbStateManager,
     ISenderRepository senders,
     IBrokerRepository brokers,
     IIdentityService identity)
 {
     _awbPresenter          = awbPresenter;
     _brokers               = brokers;
     _applicationAwbManager = applicationAwbManager;
     _awbManager            = awbManager;
     _config          = config;
     _awbs            = awbs;
     _awbStateManager = awbStateManager;
     _senders         = senders;
     _brokers         = brokers;
     _identity        = identity;
 }
Пример #4
0
		public AirWaybillController(
			IAwbPresenter awbPresenter,
			IApplicationAwbManager applicationAwbManager,
			IAwbManager awbManager,
			IStateConfig config,
			IAwbRepository awbs,
			IAwbStateManager awbStateManager,
			ISenderRepository senders,
			IBrokerRepository brokers,
			IIdentityService identity)
		{
			_awbPresenter = awbPresenter;
			_brokers = brokers;
			_applicationAwbManager = applicationAwbManager;
			_awbManager = awbManager;
			_config = config;
			_awbs = awbs;
			_awbStateManager = awbStateManager;
			_senders = senders;
			_brokers = brokers;
			_identity = identity;
		}