Ejemplo n.º 1
0
 public MainPageViewModel(ITripLogFactory factory, ITripLogDataService tripLogDataService)
 {
     this.factory            = factory;
     this.tripLogDataService = tripLogDataService;
     Entries = new ObservableCollection <TripLogEntry>();
 }
Ejemplo n.º 2
0
 public MainPageViewModel(ITripLogFactory factory)
 {
     this.factory = factory;
 }