public static void RemoveCustomer(Customer customer) { customers.Remove(customer); }
public CustomerViewModel() { model = new Customer(); ShowSave = true; }
public static void AddCustomer(Customer customer) { customers.Add(customer); }
public CustomerViewModel(Customer customer) { model = customer; }