comparison Stocks/Stocks.Common/IWebClientShim.cs @ 6:c812bca7b1ac

"Restore packages on build" enabled by Nuget 1.6 General refactoring based on code analysis
author stevenh7776 stevenhollidge@hotmail.com
date Tue, 21 Feb 2012 01:00:34 +0700
parents 29ed98d659e9
children
comparison
equal deleted inserted replaced
5:877d70fb8176 6:c812bca7b1ac
1 namespace Stocks.Common 1 using System;
2 namespace Stocks.Common
2 { 3 {
3 public interface IWebClientShim 4 public interface IWebClientShim : IDisposable
4 { 5 {
5 string DownloadString(string address); 6 string DownloadString(string address);
6 } 7 }
7 } 8 }