Exemplo n.º 1
0
 public void AddOutputParameter2(IMonthlyParameter <T> output)
 {
     this.Output2 = output;
 }
 private static IParameter <decimal> ConvertMonthlyParameterToParameter(IMonthlyParameter <decimal> parameter)
 {
     return(new Parameter <decimal> {
         Value = parameter.Value != null && parameter.Value.Count > 0 ? parameter.Value[Month.January] : 0
     });
 }