public StartPagePresenter(IStartPageView view, IImportantService importantService)
 {
     if (view == null) throw new ArgumentNullException("view");
     if (importantService == null) throw new ArgumentNullException("importantService");
     _view = view;
     _importantService = importantService;
 }
Exemple #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;
 }
 public StartPagePresenter(IStartPageView view, IApplicationController applicationController)
 {
     _view = view;
     _applicationController = applicationController;
 }
 public StartPagePresenter(IStartPageView view, IApplicationController applicationController)
 {
     _view = view;
     _applicationController = applicationController;
 }