mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 03:25:23 +08:00

This fixes the issue where form elements whose drivers inherit from FormsElementDriver would not persist their changes. Fixes #6100, #6035
10 lines
272 B
C#
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; }
|
|
}
|
|
} |