Example #1
0
 public WelcomeM(IAppPage previousPage)
     : base(previousPage)
 {
     StartModel = new StartM(this);
     HistoryModel = new HistoryM(this);
     AboutModel = new AboutM(this);
 }
Example #2
0
 public void GoToAuthors()
 {
     var authors = new AboutM(base.PreviousPage);
     base.GoToPage(authors);
 }
Example #3
0
 public AboutVM(AboutM model)
 {
     _model = model;
     ShowServiceTest = new RelayCommand(_model.GoToTestService);
 }