ProtocolProxy.cs 482 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using WCS.Core;
  7. namespace WCS.Service
  8. {
  9. public class ProtocolProxy : ProtocolProxyBase
  10. {
  11. public ProtocolProxy(Device dev, ProtocolInfo info, Type protocolType) : base(dev, info, protocolType)
  12. {
  13. }
  14. protected override void DataChanged()
  15. {
  16. //Console.WriteLine($"{Device.Code} Changed");
  17. }
  18. }
  19. }