Exemplo n.º 1
0
		public ApplicationFilesController(
			IApplicationFileRepository files,
			IEventFacade facade)
		{
			_files = files;
			_facade = facade;
		}
Exemplo n.º 2
0
 public ApplicationFilesController(
     IApplicationFileRepository files,
     IEventFacade facade)
 {
     _files  = files;
     _facade = facade;
 }
Exemplo n.º 3
0
 public ApplicationEditorWithEvent(
     IEventFacade events,
     IApplicationRepository applications,
     IApplicationEditor editor)
 {
     _events       = events;
     _applications = applications;
     _editor       = editor;
 }
Exemplo n.º 4
0
		public ApplicationEditorWithEvent(
			IEventFacade events,
			IApplicationRepository applications,
			IApplicationEditor editor)
		{
			_events = events;
			_applications = applications;
			_editor = editor;
		}
Exemplo n.º 5
0
 public AwbUpdateManagerWithEvent(
     IAwbRepository awbs,
     IEventFacade events,
     IAwbUpdateManager manager)
 {
     _awbs    = awbs;
     _events  = events;
     _manager = manager;
 }
Exemplo n.º 6
0
 public CalculationServiceWithEvent(
     ICalculationService service,
     IEventFacade events,
     ICalculationRepository calculations)
 {
     _service      = service;
     _events       = events;
     _calculations = calculations;
 }
 public ProgramViewModel(IEventFacade eventFacade, IBandFacade bandFacade, IStageFacade stageFacade)
 {
     _eventFacade = eventFacade;
     _bandFacade  = bandFacade;
     _stageFacade = stageFacade;
     Rows         = new ObservableCollection <ProgramDataGridModel>();
     Load();
     UpdateTable = new RelayCommand(Load);
 }
Exemplo n.º 8
0
		public AwbUpdateManagerWithEvent(
			IAwbRepository awbs,
			IEventFacade events,
			IAwbUpdateManager manager)
		{
			_awbs = awbs;
			_events = events;
			_manager = manager;
		}
Exemplo n.º 9
0
		public CalculationServiceWithEvent(
			ICalculationService service,
			IEventFacade events,
			ICalculationRepository calculations)
		{
			_service = service;
			_events = events;
			_calculations = calculations;
		}
Exemplo n.º 10
0
        public EventController(ISpotUser user, IEventResponse response, IAtomicSpotWork atomicSpotWork,
                               IAtomicEventWork atomicEventWork, IEventFacade eventFacade, ISpotFacade spotFacade)
        {
            _user     = user;
            _response = response;

            _atomicSpotWork  = atomicSpotWork;
            _atomicEventWork = atomicEventWork;

            _eventFacade = eventFacade;
            _spotFacade  = spotFacade;
        }
Exemplo n.º 11
0
 public ApplicationAwbManager(
     IAwbRepository awbs,
     IStateConfig config,
     IEventFacade events,
     IApplicationEditor editor,
     IApplicationStateManager states)
 {
     _awbs   = awbs;
     _config = config;
     _events = events;
     _editor = editor;
     _states = states;
 }
Exemplo n.º 12
0
		public ApplicationAwbManager(
			IAwbRepository awbs,
			IStateConfig config,
			IEventFacade events,
			IApplicationEditor editor,
			IApplicationStateManager states)
		{
			_awbs = awbs;
			_config = config;
			_events = events;
			_editor = editor;
			_states = states;
		}
Exemplo n.º 13
0
 public EventListViewModel(IMediator mediator, IEventFacade eventFacade, IBandFacade bandFacade, IStageFacade stageFacade)
 {
     _mediator     = mediator;
     _eventFacade  = eventFacade;
     _bandFacade   = bandFacade;
     _stageFacade  = stageFacade;
     EventNew      = new RelayCommand(EventNewExecute);
     EventSelected = new RelayCommand <EventListModel>(EventSelectedExecute);
     mediator.Register <UpdateMessage <EventDetailModel> >(EventUpdateOrDeleteExecute);
     mediator.Register <DeleteMessage <EventDetailModel> >(EventUpdateOrDeleteExecute);
     Events.AddRange(_eventFacade.GetAll());
     Load();
 }
Exemplo n.º 14
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;
		}
Exemplo n.º 15
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;
 }
Exemplo n.º 16
0
        public EventDetailViewModel(
            IEventFacade eventFacade,
            IMediator mediator,
            IBandFacade bandFacade,
            IStageFacade stageFacade,
            IMessageDialogService messageDialogService)
        {
            _eventFacade          = eventFacade;
            _mediator             = mediator;
            _bandFacade           = bandFacade;
            _stageFacade          = stageFacade;
            _messageDialogService = messageDialogService;

            UpdateCommand = new RelayCommand(UpdateEventExecute, CanUpdateEvent);
            DeleteCommand = new RelayCommand(DeleteEventExecute, CanDeleteBand);

            Bands.AddRange(_bandFacade.GetAll());
            Stages.AddRange(_stageFacade.GetAll());
        }
Exemplo n.º 17
0
 public AwbFilesController(IAwbFileRepository files, IEventFacade facade)
 {
     _files  = files;
     _facade = facade;
 }
Exemplo n.º 18
0
 public ClientBalanceWithEvent(IClientBalance instance, IEventFacade events)
 {
     _instance = instance;
     _events   = events;
 }
Exemplo n.º 19
0
		public ClientManagerWithEvent(IClientManager manager, IEventFacade events)
		{
			_manager = manager;
			_events = events;
		}
Exemplo n.º 20
0
		public AwbFilesController(IAwbFileRepository files, IEventFacade facade)
		{
			_files = files;
			_facade = facade;
		}
Exemplo n.º 21
0
 public TransitService(ITransitRepository transits, ICarrierRepository carriers, IEventFacade events)
 {
     _transits = transits;
     _carriers = carriers;
     _events   = events;
 }
Exemplo n.º 22
0
		public ClientBalanceWithEvent(IClientBalance instance, IEventFacade events)
		{
			_instance = instance;
			_events = events;
		}
Exemplo n.º 23
0
		public TransitService(ITransitRepository transits, ICarrierRepository carriers, IEventFacade events)
		{
			_transits = transits;
			_carriers = carriers;
			_events = events;
		}
Exemplo n.º 24
0
 public ClientManagerWithEvent(IClientManager manager, IEventFacade events)
 {
     _manager = manager;
     _events  = events;
 }