Initial commit

This commit is contained in:
2014-05-01 16:41:24 -04:00
commit e566c6ebef
247 changed files with 133367 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using System.ServiceModel;
using WeatherService.Devices;
namespace WeatherService
{
public interface IWeatherServiceCallback
{
[OperationContract(IsOneWay = true)]
void OnDeviceUpdate(DeviceBase device);
}
}