예제 #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);
 }