コード例 #1
0
        /// <summary>Gets a stock entry through a web service</summary>
        /// <exception cref="Exception">Thrown when failed to get stock entry through web service</exception>
        public StockEntry GetStockEntry(uint id)
        {
            try
            {
                StockEntry response;
                response = Client.GetStockEntry(id);

                return(response);
            }
            catch (Exception ex)
            {
                throw new Exception("Failed to get stock entry through web service", ex);
            }
        }