예제 #1
0
 public void AddCustomer(Customer customer)
 {
     if (customer.CustomerName != null)
     {
         cdal.AddCustomer(customer);
     }
 }
예제 #2
0
 public int AddCustomer(Customer customer)
 {
     return(_customerBusinessLayer.AddCustomer(customer));
 }