Files
WeatherService/Remote/IWeatherServiceCallback.cs

12 lines
270 B
C#

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