Example #1
0
 public SelectionRule(int profileId, SelectionRuleParts selectionRulePart, SelectionRuleCompareTypes selectionRuleCompareType, string value)
 {
     ProfileId                = profileId;
     SelectionRulePart        = selectionRulePart;
     SelectionRuleCompareType = selectionRuleCompareType;
     Value = value;
 }
 public UpdateProfileSelectionRuleCommand(int profileId, int selectionRuleId, SelectionRuleParts selectionRulePart, SelectionRuleCompareTypes selectionRuleCompareType, string value)
 {
     ProfileId                = profileId;
     SelectionRuleId          = selectionRuleId;
     SelectionRulePart        = selectionRulePart;
     SelectionRuleCompareType = selectionRuleCompareType;
     Value = value;
 }