Exemplo n.º 1
0
 public UserController(IViewUser aView, IUserService userService)
 {
     _userService     = userService;
     _view            = aView;
     _view.EventTest += TestMethod;
 }
Exemplo n.º 2
0
 public PresenterUser(IViewUser view, UserModel userModel)
 {
     this.view      = view;
     this.userModel = userModel;
 }