Пример #1
0
 public ReportsPresenter(
     IReportsModel model,
     IReportsView view)
     : base(model, view)
 {
     Initialize();
 }
Пример #2
0
        public ReportsPage()
        {
            InitializeComponent();

            ViewModel = FreshIOC.Container.Resolve <IReportsModel>();

            this.DataContext = ViewModel.Reports;
        }
Пример #3
0
 public ReportsViewModel(IReportsModel model, IToastService toastService, ILocalizationService localizationService)
 {
     _model               = model;
     _toastService        = toastService;
     _localizationService = localizationService;
 }