public HomeScence()
 {
     this.InitializeComponent();
     this.router    = new HomeScenceRouter(this);
     this.presenter = new HomePresenter(router);
     this.setName();
 }
Пример #2
0
 public HomePresenter(HomeScenceRouter router)
 {
     this.repo   = new HomeRepository();
     this.router = router;
 }