Ejemplo n.º 1
0
        public bool AddCustomer(Customer newcustomer)
        {
            try
            {
                Customers.Add(newcustomer);
                return true;
            }
            catch (Exception)
            {

                return false;
            }
        }
Ejemplo n.º 2
0
 //public List<Customer> GetCustomers()
 //{
 //    return Customers;
 //}
 public bool UpdateCustomer(Customer oldcustomer, Customer newcustomer)
 {
     return true; // Todo
 }
Ejemplo n.º 3
0
 public bool RemoveCustomer(Customer customerToBeRemoved)
 {
     return true; // ToDo
 }