public void Commit() { _context.SaveChanges(); }
public void Remove(MovieCategory mc) { _context.MovieCategoriesEntity.Remove(mc); _context.SaveChanges(); }
public bool Commit() { _context.SaveChanges(); return(true); }