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