示例#1
0
 public void Remove(Building building)
 {
     context.Remove(building);
 }
示例#2
0
 public void Remove(Room room)
 {
     context.Remove(room);
 }
示例#3
0
 public void Remove(Booking booking)
 {
     context.Remove(booking);
 }
示例#4
0
 public void Remove(Offering offering)
 {
     context.Remove(offering);
 }
示例#5
0
 public void Remove(Semester semester)
 {
     context.Remove(semester);
 }
示例#6
0
 public void Remove(Major major)
 {
     context.Remove(major);
 }
示例#7
0
 public void Remove(TimeSlot timeSlot)
 {
     context.Remove(timeSlot);
 }
示例#8
0
 public void Remove(Lecturer lecturer)
 {
     context.Remove(lecturer);
 }
示例#9
0
 public void Remove(Module module)
 {
     context.Remove(module);
 }
示例#10
0
 public void Remove(Faculty faculty)
 {
     context.Remove(faculty);
 }