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.
|
- using CnasLocalIDAL;
- using CnasSynchrousModel;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace CnasSynchronusClient
- {
- public class UpLoadRecordBLL
- {
- public IUpLoadRecord irecord { get { return new SyncLocalDAL.UpLoadRecordDAL(); } }
- /// <summary>
- /// 新增一条上传记录
- /// </summary>
- /// <param name="record"></param>
- /// <returns></returns>
- public int AddRecordToDatabase(UpLoadRecord record)
- {
- return irecord.InsertUpLoadRecord(record);
- }
- }
- }
|