コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Selection" /> class.
 /// </summary>
 /// <param name="AncestorCounts">AncestorCounts.</param>
 /// <param name="RecordSet">RecordSet.</param>
 /// <param name="Rule">Rule.</param>
 /// <param name="Rfv">Rfv.</param>
 /// <param name="NPer">NPer.</param>
 /// <param name="TopN">TopN.</param>
 /// <param name="Limits">Limits.</param>
 /// <param name="TableName">TableName.</param>
 /// <param name="Name">Name.</param>
 public Selection(bool?AncestorCounts = default(bool?), RecordSet RecordSet = default(RecordSet), Rule Rule = default(Rule), RFV Rfv = default(RFV), NPer NPer = default(NPer), TopN TopN = default(TopN), Limits Limits = default(Limits), string TableName = default(string), string Name = default(string))
 {
     this.AncestorCounts = AncestorCounts;
     this.RecordSet      = RecordSet;
     this.Rule           = Rule;
     this.Rfv            = Rfv;
     this.NPer           = NPer;
     this.TopN           = TopN;
     this.Limits         = Limits;
     this.TableName      = TableName;
     this.Name           = Name;
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SelectionModifiers" /> class.
 /// </summary>
 /// <param name="Limits">A definition of how to limit the number of records selected in the nett query built from the exclude, include and body queries.</param>
 /// <param name="TopN">A definition of how to limit the number of records selected in the nett query built from the exclude, include and body queries.</param>
 /// <param name="NPer">A definition of how to limit the number of records selected in the nett query built from the exclude, include and body queries.</param>
 /// <param name="Rfv">A definition of how to limit the number of records selected in the nett query built from the exclude, include and body queries.</param>
 public SelectionModifiers(Limits Limits = default(Limits), TopN TopN = default(TopN), NPer NPer = default(NPer), RFV Rfv = default(RFV))
 {
     this.Limits = Limits;
     this.TopN   = TopN;
     this.NPer   = NPer;
     this.Rfv    = Rfv;
 }