using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
|
namespace CY_DocumentSynchroWCFService
|
{
|
/// <summary>
|
/// 规定实体类的基本类
|
/// </summary>
|
/// <typeparam name="T"></typeparam>
|
public interface ICommonDAL
|
{
|
//增加实体
|
bool InserModel(IAggregateRoot model);
|
//更新实体
|
bool UpdateModel(IAggregateRoot model);
|
//删除实体
|
bool DeleteModel(IAggregateRoot model);
|
}
|
}
|