mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
12 lines
314 B
C#
12 lines
314 B
C#
using Volo.Abp.DependencyInjection;
|
|
using Yi.Framework.CodeGun.Domain.Entities;
|
|
|
|
namespace Yi.Framework.CodeGun.Domain.Handlers
|
|
{
|
|
public interface ITemplateHandler: ISingletonDependency
|
|
{
|
|
void SetTable(TableAggregateRoot table);
|
|
HandledTemplate Invoker(string str, string path);
|
|
}
|
|
}
|