public void Remove(AllocationMiscFee item)
 {
     if (_al != null)
     {
         _al.Remove(item);
     }
 }
 public void Add(AllocationMiscFee item)
 {
     if (_al == null)
     {
         _al = new ArrayList();
     }
     _al.Add(item);
 }