Files
WeatherService/Remote/IWeatherServiceCallback.cs
2014-05-01 16:41:24 -04:00

12 lines
240 B
C#

using System.ServiceModel;
using WeatherService.Devices;
namespace WeatherService
{
public interface IWeatherServiceCallback
{
[OperationContract(IsOneWay = true)]
void OnDeviceUpdate(DeviceBase device);
}
}