IShowLog.cs 237 B

12345678910111213141516
  1. 
  2. namespace PLC_S
  3. {
  4. public interface IFormLogShow
  5. {
  6. void ShowLog(string log);
  7. }
  8. public interface IShowFormLog
  9. {
  10. IFormLogShow FormLogShow
  11. {
  12. get;
  13. set;
  14. }
  15. }
  16. }