示例#1
0
 /// <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;
 }
示例#2
0
 /// <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;
 }
示例#4
0
 /// <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;
 }
示例#5
0
 /// <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;
 }
示例#6
0
 /// <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;
 }
示例#7
0
 /// <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;
 }