예제 #1
0
파일: Customer.cs 프로젝트: mirkomaty/NDO
 public void RemoveCustomerDemographics(CustomerDemographics c)
 {
     if (customerDemographics.Contains(c))
     {
         customerDemographics.Remove(c);
     }
 }
예제 #2
0
파일: Customer.cs 프로젝트: mirkomaty/NDO
 public void AddCustomerDemographics(CustomerDemographics c)
 {
     customerDemographics.Add(c);
 }