Example #1
0
 public void Remove(AddressLine value)
 {
     List.Remove(value);
 }
Example #2
0
 public bool Contains(AddressLine value)
 {
     return(List.Contains(value));
 }
Example #3
0
 public void Insert(int index, AddressLine value)
 {
     List.Insert(index, value);
 }
Example #4
0
 public int IndexOf(AddressLine value)
 {
     return(List.IndexOf(value));
 }
Example #5
0
 public int Add(AddressLine value)
 {
     return(List.Add(value));
 }