public Product GetProductByProductID(int id)
        {
            ProductsServiceClient productsServiceClient = new ProductsServiceClient();

            return(productsServiceClient.GetProductByProductID(id));
        }