10 lines
231 B
C#
Executable File
10 lines
231 B
C#
Executable File
using System.Collections;
|
|
|
|
namespace ThoughtWorks.CruiseControl.WebDashboard.MVC.View
|
|
{
|
|
public interface IVelocityViewGenerator
|
|
{
|
|
HtmlFragmentResponse GenerateView(string templateName, Hashtable velocityContext);
|
|
}
|
|
}
|