コード例 #1
0
 public TabularResult(string title, string unformattedCaption, ACalculator calc, XElement data)
 {
     this.Title = title;
     this.UnformattedCaption = unformattedCaption;
     this.OriginatingCalculator = calc;
     this.Data = data;
 }
コード例 #2
0
        public ConsequenceResult(ACalculator calculator,
		                          ConsequenceRequest request,
		                          object computedValue, 
		                          string formattedCaption,
		                          Image image,
		                          bool recommended)
        {
            this.Calculator = calculator;
            this.Request = request;
            this.ComputedValue = computedValue;
            this.FormattedCaption = formattedCaption;
            this.Image = image;
            this.Recommended = recommended;
        }
コード例 #3
0
 public TabularResult(string title, string unformattedCaption, ACalculator calc)
 {
     this.Title = title;
     this.UnformattedCaption = unformattedCaption;
     this.OriginatingCalculator = calc;
 }