Ejemplo n.º 1
0
        public RegisterPresenter(IRegisterView view)
        {
            _view = view;

            _registerRepository = new RegisterRepository();
            _profileRepository  = new MyProfileRepository();
        }
 public ForgotPasswordviewPresenter(IForgotPasswordView view)
 {
     _view       = view;
     _repository = new MyProfileRepository();
 }
Ejemplo n.º 3
0
 public ProfilePresenter(IProfileView view)
 {
     _view       = view;
     _repository = new MyProfileRepository();
 }