public Customers GetCustomer(String customerID) {
var northwind = getContext();

var customer =
(from c in northwind.Customers
where c.CustomerID == customerID
select c).First();

return (customer);
}
