public static List <Order> GetCustomer(string customerId) { using (IDataContext model = new NorhWindModel()) { var orders = OrderProvider.GetOrders(model); return(orders); } }