/// <summary> /// Primary constructor. /// </summary> /// <param name="persistence"> /// The entity persistence. /// </param> /// <param name="tree"> /// The tree controller. /// </param> public FolderHelper(IEntityPersistence persistence, TreeController tree) { Persistence = persistence; Tree = tree; }
/// <summary> /// Primary constructor. /// </summary> /// <param name="tree"> /// The tree controller. /// </param> /// <param name="helper"> /// The folder helper. /// </param> public ValidationHelper(TreeController tree, FolderHelper helper) { Tree = tree; Helper = helper; }
/// <summary> /// Primary constructor. /// </summary> /// <param name="tree"> /// The tree controller. /// </param> /// <param name="helper"> /// The folder helper. /// </param> public ConfiguredFormHelper(TreeController tree) { Tree = tree; }
/// <summary> /// Primary constructor. /// </summary> /// <param name="persistence"> /// The entity persistence. /// </param> /// <param name="tree"> /// The tree controller. /// </param> /// <param name="helper"> /// The folder helper. /// </param> public FormHelper(IEntityPersistence persistence, TreeController tree, FolderHelper helper) { Persistence = persistence; Tree = tree; Helper = helper; }
/// <summary> /// Primary constructor. /// </summary> /// <param name="tree"> /// The tree controller. /// </param> /// <param name="helper"> /// The folder helper. /// </param> public FormHelper(TreeController tree, FolderHelper helper) { Tree = tree; Helper = helper; }
/// <summary> /// Primary constructor. /// </summary> /// <param name="tree"> /// The tree controller. /// </param> /// <param name="helper"> /// The folder helper. /// </param> public LayoutHelper(TreeController tree, FolderHelper helper) { Tree = tree; Helper = helper; }
/// <summary> /// Primary constructor. /// </summary> /// <param name="tree"> /// The tree controller. /// </param> /// <param name="helper"> /// The folder helper. /// </param> public DataValueHelper(TreeController tree, FolderHelper helper) { Tree = tree; Helper = helper; }