mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-04 16:50:52 +08:00
16 lines
387 B
C#
16 lines
387 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Yi.Framework.Module.WebFirstManager.Entities;
|
|
|
|
namespace Yi.Framework.Module.WebFirstManager.Handler
|
|
{
|
|
public interface ITemplateHandler
|
|
{
|
|
void SetTable(TableAggregateRoot table);
|
|
HandledTemplate Invoker(string str, string path);
|
|
}
|
|
}
|