Mercurial > silverbladetech
view MetroWpf/Stocks.Common/Factory.cs @ 121:8f94475d3146 tip
final code
author | stevenh7776 |
---|---|
date | Thu, 31 May 2012 15:35:26 +0100 |
parents | a8b50a087544 |
children |
line wrap: on
line source
using Stocks.Common.Core; using Stocks.Common.Models; using System; using Stocks.Common.Exceptions; namespace Stocks.Common { public class Factory { public static Price CreatePrice(string webPriceData) { if (string.IsNullOrEmpty(webPriceData)) throw new InvalidWebPriceDataException(webPriceData); try { var symbol = webPriceData.Substring(1, webPriceData.IndexOf('"', 2) - 1); decimal price = decimal.Parse(webPriceData.Substring( webPriceData.Length - webPriceData.Reverse().IndexOf(","))); return new Price() { Symbol = symbol, PreviousPrice = price, CurrentPrice = price }; } catch (Exception e) { throw new InvalidWebPriceDataException(webPriceData, e); } } } }