public FreeMoneyPortfolio(UIStrategy strategy) { if (strategy == null) { throw new ArgumentNullException(nameof(strategy)); } _strategy = strategy; }
public UIStrategyControl(UIStrategy strategy) : this() { if (strategy == null) { throw new ArgumentNullException(nameof(strategy)); } _strategy = strategy; }