Exemplo n.º 1
0
 public DeployerContext(ISimultaneousKeys keys, IProjectSelector projectSelect,
                        ICharDisplay lcd,
                        IIndicators indicatorRefresh, ISound sound, IWebUtility netio, INetwork network,
                        IWebRequestFactory webFactory, IGarbage garbage,
                        IConfigurationService configurationService)
 {
     _keys                 = keys;
     _projectSelect        = projectSelect;
     _lcd                  = lcd;
     _indicatorRefresh     = indicatorRefresh;
     _sound                = sound;
     _netio                = netio;
     _network              = network;
     _webFactory           = webFactory;
     _garbage              = garbage;
     _configurationService = configurationService;
 }
Exemplo n.º 2
0
 public DeployerContext(ISimultaneousKeys keys, IProjectSelector projectSelect,
                        ICharDisplay lcd,
                        IIndicators indicatorRefresh, ISound sound, IWebUtility netio, INetwork network,
                        IWebRequestFactory webFactory, IGarbage garbage,
                        IConfigurationService configurationService)
 {
     _keys = keys;
     _projectSelect = projectSelect;
     _lcd = lcd;
     _indicatorRefresh = indicatorRefresh;
     _sound = sound;
     _netio = netio;
     _network = network;
     _webFactory = webFactory;
     _garbage = garbage;
     _configurationService = configurationService;
 }
Exemplo n.º 3
0
		public ProjectSelector(ICharDisplay display, IConfigurationService configService)
		{
			_display = display;
			_configService = configService;
			Reset();
		}
Exemplo n.º 4
0
 public IProjectSelector CreateProjectSelector(ICharDisplay charDisplay,
                                               IConfigurationService configurationService)
 {
     return(new ProjectSelector(charDisplay, configurationService));
 }
Exemplo n.º 5
0
 public IProjectSelector CreateProjectSelector(ICharDisplay charDisplay,
                                               IConfigurationService configurationService)
 {
     return new ProjectSelector(charDisplay, configurationService);
 }
Exemplo n.º 6
0
 public ProjectSelector(ICharDisplay display, IConfigurationService configService)
 {
     _display       = display;
     _configService = configService;
     Reset();
 }