예제 #1
0
 public void Remove(EmployeeConfigElement module)
 {
     if (BaseIndexOf(module) >= 0)
     {
         BaseRemove(module.Email);
         // Your custom code goes here.
         Console.WriteLine("EmployeeCollection: {0}", "Removed collection element!");
     }
 }
예제 #2
0
        public void Add(EmployeeConfigElement module)
        {
            BaseAdd(module);

            // Your custom code goes here.
        }
예제 #3
0
 public int IndexOf(EmployeeConfigElement module)
 {
     return(BaseIndexOf(module));
 }