示例#1
0
 /// <summary>
 /// Constructs the action output with the action details
 /// </summary>
 /// <param name="actionType">The action type</param>
 /// <param name="actionValue">The action value</param>
 public ReportAction
 (
     ReportActionType actionType,
     string actionValue
 )
 {
     this.ActionType  = actionType;
     this.ActionValue = actionValue;
 }
示例#2
0
 /// <summary>
 /// Constructs the report action with the details
 /// </summary>
 /// <param name="actionType">The action type</param>
 /// <param name="actionTemplate">The action template</param>
 public ReportActionDefinition
 (
     ReportActionType actionType,
     string actionTemplate
 )
 {
     this.ActionType       = actionType;
     this.ActionTemplate   = actionTemplate;
     this.TemplateBindings = new Collection <DataBinding>();
 }