Beispiel #1
0
 public static void RemoveCustomer(Customer customer)
 {
     customers.Remove(customer);
 }
Beispiel #2
0
 public CustomerViewModel()
 {
     model = new Customer();
     ShowSave = true;
 }
Beispiel #3
0
 public static void AddCustomer(Customer customer)
 {
     customers.Add(customer);
 }
Beispiel #4
0
 public CustomerViewModel(Customer customer)
 {
     model = customer;
 }