设计模式——c#代理问题
本文关键字:问题 代理 设计模式 | 更新日期: 2023-09-27 17:49:18
有人知道在编写对象代理时减少样板代码数量的库吗?
我的代理现在看起来是这样的,我认为这是一个讨厌的方法:)
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;
}
}
大多数依赖注入工具(例如Windsor Castle -看看这里)可以做到。
Castle Dynamic Proxy -> http://www.castleproject.org/dynamicproxy/index.html