public LoginPresenter(LoginScenceRouter router)
 {
     this.router = router;
     this.repo   = new LoginRepository();
 }
 public LoginScence()
 {
     this.InitializeComponent();
     this.router    = new LoginScenceRouter(this);
     this.presenter = new LoginPresenter(router);
 }