using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.Infrastructure.Domain; namespace CY.IBaseDAL { /// /// 规定实体类的基本类 /// /// public interface ICommonDAL { //增加实体 bool InserModel(IAggregateRoot model); //更新实体 bool UpdateModel(IAggregateRoot model); //删除实体 bool DeleteModel(IAggregateRoot model); } }