CNAS取数仪器端升级
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

24 lignes
600B

  1. using CnasLocalIDAL;
  2. using CnasSynchrousModel;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. namespace CnasSynchronusClient
  8. {
  9. public class UpLoadRecordBLL
  10. {
  11. public IUpLoadRecord irecord { get { return new SyncLocalDAL.UpLoadRecordDAL(); } }
  12. /// <summary>
  13. /// 新增一条上传记录
  14. /// </summary>
  15. /// <param name="record"></param>
  16. /// <returns></returns>
  17. public int AddRecordToDatabase(UpLoadRecord record)
  18. {
  19. return irecord.InsertUpLoadRecord(record);
  20. }
  21. }
  22. }