CNAS取数仪器端升级
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

27 行
665B

  1. using CnasSynchrousModel;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Data;
  5. using System.Linq;
  6. using System.Text;
  7. namespace CnasLocalIDAL
  8. {
  9. public interface IInstrument
  10. {
  11. List<SyncInstrumentItemInfo> GetAllInstruments();
  12. List<SyncInstrumentItemInfo> GetInstrumentsByType(string strType);
  13. DataTable GetAllInstrumentInfosToDT();
  14. DataTable GetInstrumentInfosByTypeToDT(string strType);
  15. int InsertInstrumentInfo(SyncInstrumentItemInfo instrument);
  16. int UpdateInstrumentInfo(SyncInstrumentItemInfo instrument);
  17. int DeleteInstrumentInfo(SyncInstrumentItemInfo instrument);
  18. }
  19. }