namespace CasesHost
{
class Program
{
static void Main(string[] args)
{
using (ServiceHost Host = new ServiceHost(typeof(WCF_Court.Service)))
{
Host.Open();
Console.WriteLine("...");
Console.ReadKey();
}
}
}
}