public bool Create(Category category) { LHDbContext.Add(category); LHDbContext.SaveChanges(); return(true); }
public bool Create(LHUrl LHUrl) { LHDbContext.Add(LHUrl); LHDbContext.SaveChanges(); return(true); }
public bool Create(Gamebooks gamebooks) { LHDbContext.Add(gamebooks); LHDbContext.SaveChanges(); return(true); }