public int AddCustomer(Customer customer)
 {
     ValidateCustomer(customer, true);
     return(_dataController.AddCustomer(customer));
 }