public Game(GameInfo info, BetsName betsName) { this.Info = info; this.BetsName = betsName; this.Coefficients = new Dictionary<CoefType, ICoefficient>(); }
public Game(GameInfo info, Dictionary<CoefType, ICoefficient> coefs, BetsName betsName = default(BetsName)) { this.Info = info; this.Coefficients = coefs; this.BetsName = betsName; }