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