using WCS.Core; using WCS.Service.Systems; namespace WCS.Service { public class ProtocolProxy : ProtocolProxyBase { public ProtocolProxy(Device dev, ProtocolInfo info, Type protocolType) : base(dev, info, protocolType) { } protected override void DataChanged() { //Console.WriteLine($"{Device.Code} Changed"); } } }