Example #1
0
 public ConsoleViewer(IAstronautServices iAstronautServices)
 {
     services = iAstronautServices;
 }
Example #2
0
 public MainViewModel(IAstronautServices IAS)
 {
     this.IAS           = IAS;
     this.AstronautList = new ObservableCollection <Astronaut>();
     ShowCommand        = new Command(async() => await PrintData());
 }