예제 #1
0
 public hide_the_splash_screen(ITimer timer, ISplashScreenView view, ISplashScreenPresenter presenter)
 {
     this.timer = timer;
     this.view = view;
     this.presenter = presenter;
     timer.start_notifying(presenter, new TimeSpan(50));
 }
예제 #2
0
 public SplashScreenPresenter(ISplashScreenView viewArg)
 {
     view          = viewArg;
     dbHelper      = new SplashScreenDBHelper();
     _loadProgress = 0;
 }
예제 #3
0
 public SplashScreenPresenter(ITimer timer, ISplashScreenView view)
 {
     this.timer = timer;
     this.view = view;
 }