Exemplo n.º 1
0
        public MainWindow()
        {
            InitializeComponent();

            MessageBoxWrapper = new MessageBoxWrapper();

            SetTheme();
        }
Exemplo n.º 2
0
        public AccountsPanePresenter(IAccountsPaneView view,
                                     IAccountsPaneViewModel viewModel,
                                     IDataService dataService,
                                     INotificationService notificationService,
                                     IMessageBoxWrapper messageBoxWrapper) : base(view, viewModel)
        {
            this.view                = view;
            this.viewModel           = viewModel;
            this.dataService         = dataService;
            this.notificationService = notificationService;
            this.messageBoxWrapper   = messageBoxWrapper;

            BindEvents();
            BindCommands();
        }
Exemplo n.º 3
0
 public SomeClass(IMessageBoxWrapper messageBox)
 {
     _messageBox = messageBox;
 }