Exemplo n.º 1
0
 /// <summary>
 /// RankedSearchRelevanceType class constructor
 /// </summary>
 public RankedSearchRelevanceType()
 {
     this.rankedResultField = new List <RankedSearchRelevanceType>();
     this.userAreaField     = new UserAreaType();
     this.weightField       = new NumericValueType();
     this.scoreField        = new RankedSearchRelevanceTypeScore();
 }
Exemplo n.º 2
0
        private static CompetencyTypeCompetencyWeight CreateCompetencyTypeCompetencyWeight()
        {
            CompetencyTypeCompetencyWeight c = new CompetencyTypeCompetencyWeight();

            StringValue s = new StringValue();

            s.description = "Omschrijving";
            s.Value       = "Item";

            NumericValueType n = new NumericValueType();

            n.Value = 1.8;
            c.Item  = n;

            //c.SupportingInformation = new List<string>();
            //c.SupportingInformation.Add("SupportingInformation1");
            //c.SupportingInformation.Add("SupportingInformation2");

            // levelOfInterest
            // skillLevel

            c.type = "skillLevel";

            return(c);
        }
Exemplo n.º 3
0
 /// <summary>
 /// NumericAndStringScoreType class constructor
 /// </summary>
 public NumericAndStringScoreType()
 {
     this.stringValueField  = new StringValue();
     this.numericValueField = new NumericValueType();
 }
Exemplo n.º 4
0
 /// <summary>
 /// OtherSearchCriteriaType class constructor
 /// </summary>
 public OtherSearchCriteriaType()
 {
     this.weightField = new NumericValueType();
 }