public void Update(Course course) { db.Entry(course).State = EntityState.Modified; }
public void Add(Course course) { db.Courses.Add(course); }