CNAS取数仪器端升级
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

18 řádky
397B

  1. using CnasSynchrousModel;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace CNAS_SerialPort
  7. {
  8. public interface ISerialPortConfigInfo
  9. {
  10. SerialPortConfigInfo GetSerialPortConfigInfo();
  11. int InsertSerialPortConfigInfo(SerialPortConfigInfo serial);
  12. int UpdateSerialPortConfigInfo(SerialPortConfigInfo serial);
  13. }
  14. }