Example #1
0
        public bool Contains(ScheduleInfos value)
        {
            foreach (ScheduleInfos s in base.List)
            {
                if (value.Equals(s))
                {
                    return(true);
                }
            }

            return(false);
        }
Example #2
0
        public ScheduleInfos Add(ScheduleInfos value)
        {
            base.List.Add(value as object);

            return(value);
        }
Example #3
0
 public int IndexOf(ScheduleInfos value)
 {
     return(base.List.IndexOf(value));
 }
Example #4
0
 public void Insert(int index, ScheduleInfos value)
 {
     base.List.Insert(index, value as object);
 }
Example #5
0
 public void Remove(ScheduleInfos value)
 {
     base.List.Remove(value as object);
 }
Example #6
0
 private void scheduleControl7_ItemSelected(object sender, EventArgs e)
 {
     _ScheduleControlSelected = scheduleControl7;
     _SelectedItemsInfos      = scheduleControl7.SelectedItemInfos;
 }