public IList <TimeLimit> Remove(TimeLimit limit) { if (this.Limits != null && limit != null) { this.Limits.Remove(limit); } this.Validate(); return(this.Limits); }
public IList <TimeLimit> Add(TimeLimit limit) { if (this.Limits == null) { this.Limits = new List <TimeLimit>(); } this.Limits.Add(limit); this.Validate(); return(this.Limits); }