コード例 #1
0
 public PerformMemberActionArgs(
     ShortMemberInfo member,
     int axisIndex,
     MemberActionType action,
     List <ShortMemberInfo> ascendants)
     : this()
 {
     this.Member     = member;
     this.AxisIndex  = axisIndex;
     this.Action     = action;
     this.Ascendants = ascendants;
 }
 public PerformMemberActionArgs(
     ShortMemberInfo member,
     int axisIndex,
     MemberActionType action,
     List<ShortMemberInfo> ascendants)
     :this()
 {
     this.Member = member;
     this.AxisIndex = axisIndex;
     this.Action = action;
     this.Ascendants = ascendants;
 }
 public static PerformMemberActionArgs CreatePerformMemberActionArgs(String connectionString,
     ShortMemberInfo member,
     int axisIndex,
     MemberActionType action,
     List<ShortMemberInfo> ascendants)
 {
     PerformMemberActionArgs args = new PerformMemberActionArgs();
     args.Connection = connectionString;
     args.Member = member;
     args.AxisIndex = axisIndex;
     args.Action = action;
     args.Ascendants = ascendants;
     return args;
 }