using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Evaluation { public class SelectionIndicator { public SelectionIndicator() { } public SelectionIndicator(int goodSelections, int totalSelections, int evaluation) { GoodSelections = goodSelections; TotalSelections = totalSelections; Evaluation = evaluation; } public int GoodSelections { get; set; } public int TotalSelections { get; set; } public int Evaluation { get; set; } public double Indicator { get { return Math.Round((double)GoodSelections / TotalSelections, 5); } } } }