コード例 #1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="ClosePersonList" /> class.
        /// Initializes a new instance of the <see cref="ClosePersonList" />class.
        /// </summary>
        /// <param name="ClosePersons">ClosePersons.</param>
        /// <param name="Match">Match.</param>

        public ClosePersonList(List <PersonRecord> ClosePersons = null, PersonRecord Match = null)
        {
            this.ClosePersons = ClosePersons;
            this.Match        = Match;
        }
コード例 #2
0
ファイル: BestMatch.cs プロジェクト: bocradu/WalkieStalky
        /// <summary>
        /// Initializes a new instance of the <see cref="BestMatch" /> class.
        /// Initializes a new instance of the <see cref="BestMatch" />class.
        /// </summary>
        /// <param name="MatchedTopic">MatchedTopic.</param>
        /// <param name="BestMatchedPerson">BestMatchedPerson.</param>

        public BestMatch(string MatchedTopic = null, PersonRecord BestMatchedPerson = null)
        {
            this.MatchedTopic      = MatchedTopic;
            this.BestMatchedPerson = BestMatchedPerson;
        }