public LocalDbAskAnExpertService(ISQLiteConnectionService _SQLiteConnectionService)
 {
     db = _SQLiteConnectionService.getConnection();
     db.CreateTable <InstructingExpert>();
     db.CreateTable <InstructorSubjectReview>();
     db.CreateTable <InstructorSubject>();
 }
Exemple #2
0
 public LocalEvaluationService(ISQLiteConnectionService _SQLiteConnectionService)
 {
     db = _SQLiteConnectionService.getConnection();
     db.CreateTable <Question>();
     db.CreateTable <QuestionOption>();
     db.CreateTable <MyEvaluation>();
 }
Exemple #3
0
 public LocalDbService(ISQLiteConnectionService _SQLiteConnectionService)
 {
     db = _SQLiteConnectionService.getConnection();
     db.CreateTable <UserToken>();
     db.CreateTable <UserInfo>();
     db.CreateTable <ExternalLoginInfo>();
 }
 public LocalDbCareerCounsellingService(ISQLiteConnectionService _SQLiteConnectionService)
 {
     db = _SQLiteConnectionService.getConnection();
     db.CreateTable <InstructingExpert>();
     db.CreateTable <InstructorSubjectReview>();
     db.CreateTable <InstructorSubject>();
 }
 public LocalDbLearningService(ISQLiteConnectionService _SQLiteConnectionService)
 {
     db = _SQLiteConnectionService.getConnection();
     db.CreateTable <Ebook>();
     db.CreateTable <EbookCategory>();
     db.CreateTable <EbookSubject>();
 }