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(); } }
///
/// 新增一条上传记录
///
///
///
public int AddRecordToDatabase(UpLoadRecord record)
{
return irecord.InsertUpLoadRecord(record);
}
}
}