public bool Contains(ClaimCode Index) { foreach (object key in Dictionary.Keys) if (((ClaimCode)key).Equals(Index)) return true; return false; }
public int Add(ClaimCode Key) { return List.Add(Key); }
public void Add(ClaimCode Index) { Dictionary.Add(Index, new WeekDayHoursDictionary()); }
public WeekDayHoursDictionary this[ClaimCode index] { get { return (WeekDayHoursDictionary)Dictionary[index]; } set { Dictionary[index] = value; } }