Example #1
0
        public static void Main(string [] args)
        {
            Console.WriteLine("Press any key once the service has started");
            Console.ReadKey();
            Channel channel = new Channel("127.0.0.1:50025", ChannelCredentials.Insecure);
            var     client  = new RateCardConfirmationService.RateCardConfirmationServiceClient(channel);

            TestConfirmRateCard(client);
        }
Example #2
0
 public static void TestConfirmRateCard(RateCardConfirmationService.RateCardConfirmationServiceClient client)
 {
     var request  = new ConfirmRateCardRequest();
     var response = client.ConfirmRateCard(request);
 }