public Feature(string name, StrategyBase strategy, DateTime? startDate, DateTime? endDate) { this.name = name; this.strategy = strategy; this.startDate = startDate ?? DateTime.MinValue; this.endDate = endDate ?? DateTime.MaxValue; }
public Feature(string name, StrategyBase strategy) : this(name, strategy, null, null) { }