Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TemplateAction"/> class.
 /// </summary>
 /// <param name="actionType">Type of the action.</param>
 /// <param name="source">The source.</param>
 /// <param name="target">The target.</param>
 public TemplateAction(TemplateRule parent, string actionType, string source, string target)
     : this(parent)
 {
     this.ActionType = actionType;
     this.Source = source;
     this.Target = target;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TemplateAction"/> class.
 /// </summary>
 public TemplateAction(TemplateRule parent)
 {
     this.Parent = parent;
 }