public void Remove(Account obj)
 {
     this.List.Remove(obj);
 }
        public Account Add(Account obj)
        {
            this.List.Add(obj);

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