Files
Orchard/src/Orchard.Web/Modules/Orchard.Layouts/Services/IFormElementServices.cs
Sipke Schoorstra 8693b68ac7 Fixed a binding issue with FormsElementDriver.
This fixes the issue where form elements whose drivers inherit from FormsElementDriver would not persist their changes.

Fixes #6100, #6035
2015-12-03 22:47:29 +01:00

9 lines
238 B
C#

using Orchard.Forms.Services;
namespace Orchard.Layouts.Services {
public interface IFormsBasedElementServices : IDependency
{
IFormManager FormManager { get; }
ICultureAccessor CultureAccessor { get; }
}
}