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. }