15 lines
308 B
C#
15 lines
308 B
C#
using Yi.Framework.CodeGun.Domain.Entities;
|
|
|
|
namespace Yi.Framework.CodeGun.Domain.Handlers
|
|
{
|
|
public class TemplateHandlerBase
|
|
{
|
|
protected TableAggregateRoot Table { get; set; }
|
|
|
|
public void SetTable(TableAggregateRoot table)
|
|
{
|
|
Table = table;
|
|
}
|
|
}
|
|
}
|