public UserPresenter(IUserView view, IUserCommand command)
 {
     View    = view;
     Command = command;
     view.AttachPresenter(this);
 }