ProtocolProxy.cs 405 B

123456789101112131415161718
  1. using WCS.Core;
  2. using WCS.Service.Systems;
  3. namespace WCS.Service
  4. {
  5. public class ProtocolProxy : ProtocolProxyBase
  6. {
  7. public ProtocolProxy(Device dev, ProtocolInfo info, Type protocolType) : base(dev, info, protocolType)
  8. {
  9. }
  10. protected override void DataChanged()
  11. {
  12. //Console.WriteLine($"{Device.Code} Changed");
  13. }
  14. }
  15. }