Exemplo n.º 1
0
 public SampleControlPresenter(ISampleControlView view, IImportantService importantService)
 {
     if (view == null) throw new ArgumentNullException("view");
     if (importantService == null) throw new ArgumentNullException("importantService");
     _view = view;
     _importantService = importantService;
 }
Exemplo n.º 2
0
 public StartPagePresenter(IStartPageView view, IImportantService importantService)
 {
     if (view == null) throw new ArgumentNullException("view");
     if (importantService == null) throw new ArgumentNullException("importantService");
     _view = view;
     _importantService = importantService;
 }
Exemplo n.º 3
0
 public StartPagePresenter(IStartPageView view, IImportantService importantService)
 {
     if (view == null)
     {
         throw new ArgumentNullException("view");
     }
     if (importantService == null)
     {
         throw new ArgumentNullException("importantService");
     }
     _view             = view;
     _importantService = importantService;
 }
Exemplo n.º 4
0
 public SampleControlPresenter(ISampleControlView view, IImportantService importantService)
 {
     if (view == null)
     {
         throw new ArgumentNullException("view");
     }
     if (importantService == null)
     {
         throw new ArgumentNullException("importantService");
     }
     _view             = view;
     _importantService = importantService;
 }
Exemplo n.º 5
0
 public SessionWorker(IImportantService service, ILogging logging)
 {
     this.service = service;
     this.logging = logging;
 }