Exemplo n.º 1
0
        public bool Update(Course c)
        {
            Course ori = this.GetById(c.CourseId);
            ori.Name = c.Name;

            return true;
        }
Exemplo n.º 2
0
 public bool Remove(Course c)
 {
     throw new NotImplementedException();
 }