public FighterProviderProxy()
        {
            var address = new EndpointAddress("http://localhost:9010/MyWcfServiceLibraryBasic/FighterProvider");

            var factory = new ChannelFactory<IFighterProvider>(new WSHttpBinding());

            _service = factory.CreateChannel(address);
        }
        public void setup()
        {
            start_host();

            _proxy = new FighterProviderProxy();
        }