有人知道库,在编写对象代理时会减少样板代码的数量吗?
我的代理现在看起来如下,我认为这是一个讨厌的方法:)
public class SampleTenantProxy : Tenant
{
public override int? Id
{
get { return tenant.Id; }
set { tenant.Id = value; }
}
public override String Code
{
get { return tenant.Code; }
set { tenant.Code = value; }
}
public override String Name
{
get { return tenant.Name; }
set { tenant.Name = value; }
}
public override Decimal Price
{
get { return tenant.Price; }
set { tenant.Price = value; }
}
private readonly Tenant tenant;
public TenantListBoxProxy(Tenant tenant)
{
this.tenant = tenant;
}
}
答案 0 :(得分:2)
大多数依赖注入工具(例如 Windsor Castle - 看看here)都可以做到。
答案 1 :(得分:0)
城堡动态代理 - > http://www.castleproject.org/dynamicproxy/index.html