public void Remove(StudentAssignedOffering item)
 {
     if (item == null)
     {
         throw new ArgumentNullException("item");
     }
     throw new NotSupportedException(string.Format("{0} entities cannot be removed.  Only \"soft\" deletes are supported via IsActive.", item.GetType().Name));
 }