Skip to content

Instantly share code, notes, and snippets.

@ChrisBriggsy
Created September 8, 2015 10:32
Show Gist options
  • Save ChrisBriggsy/ebe167df67cd856cd9e7 to your computer and use it in GitHub Desktop.
Save ChrisBriggsy/ebe167df67cd856cd9e7 to your computer and use it in GitHub Desktop.
Setting up Dependency Injection for Windows Universal Platform using Autofac - Step 2 - Extrat interface
using System.Threading.Tasks;
namespace SparkFun
{
internal interface ISparkFunWeatherSheild
{
float Humidity { get; }
float Temperature { get; }
Task<bool> Setup();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment