Example #1
0
 public void RemoveThirdDataMapper(ThirdDataMapper trdDataMapper)
 {
     if (trdDataMapperList.Contains(trdDataMapper))
     {
         trdDataMapperList.Remove(trdDataMapper);
     }
 }
Example #2
0
 public void AddThirdDataMapper(ThirdDataMapper trdDataMapper)
 {
     if (trdDataMapper == null)
     {
         return;
     }
     if (!trdDataMapperList.Contains(trdDataMapper))
     {
         trdDataMapperList.Add(trdDataMapper);
     }
 }