Exemplo n.º 1
0
 public BordRankingMethod(IRelativeWeightCalculationApproach <TData> relativeWeightCalculationApproach)
 {
     ApproachName = relativeWeightCalculationApproach.GetType().Name.Replace("`1", "");
     _relativeWeightCalculationApproach = relativeWeightCalculationApproach ??
                                          throw new ArgumentNullException(nameof(relativeWeightCalculationApproach));
 }