Beispiel #1
0
 //TODO : Inject sqlite
 public ConferencesViewModel(ITekConfService tekConfService, ISQLitePlatform sqlite)
 {
     
     _tekConfService = tekConfService;
     _sqliteClient = new SQLiteClient(sqlite);
     this.Conferences = new List<Conference>();
 }
Beispiel #2
0
 public ConferencesViewModel(ITekConfService tekConfService)
 {
     _tekConfService = tekConfService;
     this.Conferences = new List<Conference>();
 }