public partial class Northwind : System.Data.Linq.DataContext {

// Definice roziujcch metod

public Northwind(string connection,
System.Data.Linq.Mapping.MappingSource mappingSource) :
	base(connection, mappingSource) {
OnCreated();
}

public Northwind(System.Data.IDbConnection connection,
System.Data.Linq.Mapping.MappingSource mappingSource) :
	base(connection, mappingSource) {
OnCreated();
}

public System.Data.Linq.Table<Customer> Customers {
get {
	return this.GetTable<Customer>();
}
}

public System.Data.Linq.Table<Order> Orders {
get {
	return this.GetTable<Order>();
}
}
}
