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);
|
|
}
|
|
}
|