示例#1
0
 //Metode for tilkobling til database
 public InnSporsmalController(KundeServiceContext dbcontext)
 {
     _dbcontext = dbcontext;
 }
 //Tilkobling til db
 public KundeServiceDB(KundeServiceContext dbcontext)
 {
     _dbcontext = dbcontext;
     _dbcontext.Database.EnsureCreated();
 }
示例#3
0
 //Metode for tilkobling til database
 public FAQController(KundeServiceContext dbcontext)
 {
     _dbcontext = dbcontext;
 }