mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
9 lines
389 B
C#
9 lines
389 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Orchard.Templates.Compilation.Razor {
|
|
public interface IRazorCompiler : IDependency {
|
|
IRazorTemplateBase<TModel> CompileRazor<TModel>(string code, string name, IDictionary<string, object> parameters);
|
|
IRazorTemplateBase CompileRazor(string code, string name, IDictionary<string, object> parameters);
|
|
}
|
|
} |