Ejemplo n.º 1
0
        public Instructor FindInstructor(int?id)
        {
            Instructor instructor = database.Instructors.Find(id);

            return(instructor);
        }
Ejemplo n.º 2
0
 public Task EditInstructor(Instructor instructor)
 {
     database.Instructors.Update(instructor);
     return(database.SaveChangesAsync());
 }
Ejemplo n.º 3
0
 public Task AddInstructor(Instructor instructor)
 {
     database.Instructors.AddAsync(instructor);
     return(database.SaveChangesAsync());
 }