Beispiel #1
0
 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;
 }
Beispiel #2
0
 public Feature(string name, StrategyBase strategy)
     : this(name, strategy, null, null)
 {
 }