Files
Orchard/src/Orchard.Web/Modules/Orchard.DynamicForms/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

10 lines
272 B
C#

using Orchard.Forms.Services;
using Orchard.Localization.Services;
namespace Orchard.DynamicForms.Services {
public interface IFormElementServices : IDependency
{
IFormManager FormManager { get; }
ICultureManager CultureManager { get; }
}
}