示例#1
0
 public void Remove(Account obj)
 {
     this.List.Remove(obj);
 }
示例#2
0
        public Account Add(Account obj)
        {
            this.List.Add(obj);

            return obj;
        }
示例#3
0
 public void Insert(int index, Account obj)
 {
     this.List.Insert(index, obj);
 }
示例#4
0
 public Account Add(Account obj)
 {
     return this.AccountCollection.Add(obj);
 }