public Customer UpdateCustomer(Customer customer) {
NorthwindDataContext northwind = getDataContext();
northwind.Customers.Attach(customer, true);
northwind.SubmitChanges();
return(customer);
}
