public bool Update(Course c) { Course ori = this.GetById(c.CourseId); ori.Name = c.Name; return true; }
public bool Remove(Course c) { throw new NotImplementedException(); }