Added favorite softkey API

This commit is contained in:
Lucio Maranta
2018-07-12 11:41:37 +02:00
parent 1d2be186bf
commit 7e9d0dfe97
10 changed files with 164 additions and 7 deletions
+1
View File
@@ -28,6 +28,7 @@ namespace Step.Database
public DbSet<PerformedMaintenanceModel> PerformedMaintenances { get; set; }
public DbSet<MaintenanceNoteModel> MaintenancesNotes { get; set; }
public DbSet<MaintenanceFileModel> MaintenanceFiles { get; set; }
public DbSet<FavoriteUserSoftkeyModel> FavoriteUserSoftkeys { get; set; }
// Create migration string
public static string CONNECTION_STRING = "Server = " + "localhost" + "; Database=" + DATABASE_NAME +";Uid="+ DATABASE_USER +";Pwd="+ DATABASE_PWD +";";