using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CY_DocumentSynchroWCFService
{
///
/// 表示继承于该接口的类型是聚合根类型
///
public interface IAggregateRoot
{
///
/// 属性访问器
///
/// 属性名
/// 索引
/// 是否将指定属性设置为传入值
/// 需要赋予的值
/// 与名称对应的属性值
object Visiter(string name, int? index = -1, bool isChange = false, object value = null);
}
}