示例#1
0
 public void Remove(AllocationOrder item)
 {
     if (_al != null)
     {
         _al.Remove(item);
     }
 }
示例#2
0
 public void Add(AllocationOrder item)
 {
     if (_al == null)
     {
         _al = new ArrayList();
     }
     _al.Add(item);
 }