public Boolean DeleteCustomer(Customer customer) {
using (NorthwindDataContext northwind = getDataContext()) {
northwind.Customers.Attach(customer);
northwind.Customers.Remove(customer);
northwind.SubmitChanges();
return (true);
}
}
