public void Add(String code, BondPriceRateMap map)
 {
     _dict.Add(code, map);
 }
Пример #2
0
 public static BondPriceRateMap CreateBondPriceRateMap(String code, DateTime settlement, 
     DateTime maturity, double coupon, int frequencyPerYear)
 {
     BondPriceRateMap map = new BondPriceRateMap(code, settlement, maturity, coupon, frequencyPerYear);
     return map;
 }