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