public static List <StockInfo> GetProductInfoByNameOrCode(string description, int productcode)
        {
            PurchaseServiceClient service = new PurchaseServiceClient();

            return(service.GetProductInfoByNameOrCode(description, productcode).ToList());
        }