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