public static SampleHostApplication
static void Main() {
using (ServiceHost host = new ServiceHost(typeof(OrderService))) {
host.AddServiceEndpoint(typeof(IOrderService),
new WSHttpBinding(),
"http://localhost:8000/OrderService");
host.Open();
	// ekn na spojen ... kd neuveden
}
}
