Click here to Skip to main content
15,886,788 members
Articles / DevOps / Testing

Composite Application Reloaded

Rate me:
Please Sign up or sign in to vote.
4.88/5 (38 votes)
11 May 2011CPOL12 min read 117.8K   1.5K   95  
A much simpler composite application library.
//===================================================================================
// Microsoft patterns & practices
// Composite Application Guidance for Windows Presentation Foundation and Silverlight
//===================================================================================
// Copyright (c) Microsoft Corporation.  All rights reserved.
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY
// OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT
// LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
// FITNESS FOR A PARTICULAR PURPOSE.
//===================================================================================
// The example companies, organizations, products, domain names,
// e-mail addresses, logos, people, places, and events depicted
// herein are fictitious.  No association with any real company,
// organization, product, domain name, email address, logo, person,
// places, or events is intended or should be inferred.
//===================================================================================
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Xml.Linq;
using StockTraderRI.Infrastructure.Interfaces;
using StockTraderRI.Infrastructure.Models;
using StockTraderRI.Modules.Market.Properties;
using System.ComponentModel.Composition;

namespace StockTraderRI.Modules.Market.Services
{
	[Export(typeof(IMarketHistoryService))]
	public class MarketHistoryService : IMarketHistoryService
	{
		private Dictionary<string, MarketHistoryCollection> _marketHistory;

		public MarketHistoryService()
		{
			InitializeMarketHistory();
		}

		private void InitializeMarketHistory()
		{
			XDocument document = XDocument.Parse(Resources.MarketHistory);

			_marketHistory = document.Descendants("MarketHistoryItem")
				.GroupBy(x => x.Attribute("TickerSymbol").Value,
						 x => new MarketHistoryItem
								  {
									  DateTimeMarker = DateTime.Parse(x.Attribute("Date").Value, CultureInfo.InvariantCulture),
									  Value = Decimal.Parse(x.Value, NumberStyles.Float, CultureInfo.InvariantCulture)
								  })
				.ToDictionary(group => group.Key, group => new MarketHistoryCollection(group));
		}

		public MarketHistoryCollection GetPriceHistory(string tickerSymbol)
		{
			MarketHistoryCollection items = _marketHistory[tickerSymbol];
			return items;
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) http://www.ansibleww.com.au
Australia Australia
The Australia born French man who went back to Australia later in life...
Finally got over life long (and mostly hopeless usually, yay!) chronic sicknesses.
Worked in Sydney, Brisbane, Darwin, Billinudgel, Darwin and Melbourne.

Comments and Discussions