public TabularResult(string title, string unformattedCaption, ACalculator calc, XElement data) { this.Title = title; this.UnformattedCaption = unformattedCaption; this.OriginatingCalculator = calc; this.Data = data; }
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; }
public TabularResult(string title, string unformattedCaption, ACalculator calc) { this.Title = title; this.UnformattedCaption = unformattedCaption; this.OriginatingCalculator = calc; }