view Stocks/Stocks.Common/IWebClientShim.cs @ 17:7721a1270363

New files added during dev
author stevenh7776 stevenhollidge@hotmail.com
date Wed, 14 Mar 2012 01:23:57 +0700
parents c812bca7b1ac
children
line wrap: on
line source

using System;
namespace Stocks.Common
{
  public interface IWebClientShim : IDisposable
  {
    string DownloadString(string address);
  }
}