Beispiel #1
0
 public bool Create(Category category)
 {
     LHDbContext.Add(category);
     LHDbContext.SaveChanges();
     return(true);
 }
Beispiel #2
0
 public bool Create(LHUrl LHUrl)
 {
     LHDbContext.Add(LHUrl);
     LHDbContext.SaveChanges();
     return(true);
 }
Beispiel #3
0
 public bool Create(Gamebooks gamebooks)
 {
     LHDbContext.Add(gamebooks);
     LHDbContext.SaveChanges();
     return(true);
 }