public void SaveCustomer() { CustomerInEditor.Studentnumber = EditorStudentnumber; CustomerInEditor.Name = EditorName; CustomerInEditor.Password = EditorPassword; CustomerInEditor.Email = EditorEmail; if (IsExistingCustomer(CustomerInEditor)) { Service.UpdateCustomer(CustomerInEditor); } else { Service.AddCustomer(CustomerInEditor); } LoadCustomers(); }
public bool AddClient(Customer client) { return(Service.AddCustomer(client)); }