Exemplo n.º 1
0
        static void Main(string[] args)
        {
            //IProductService _productService = new ProductService();
            IProductService _productService = new ProductServiceProxy(new ProductService());

            Console.WriteLine($"Product Count {_productService.GetProduct()}");

            Console.ReadLine();
        }
        public static void Execute()
        {
            string username = "******";

            //Proxy requires the username whereas the Productservice doesn't

            ProductServiceProxy service = new ProductServiceProxy(username);

            service.AddProduct();
            service.GetAll();
            service.GetProduct();
        }