public class CustomerBiz {
public Customer GetCustomer(String customerID) {
using (NorthwindDataContext northwind = getDataContext()) {
var customer =
	northwind.Customers.Single(c => c.CustomerID == customerID);

return (customer);
}
}
// kd vynechn ...
}
