Exemplo n.º 1
0
        public LecturePlanEntry GetEntry(LecturePlanEntry entry)
        {
            LecturePlanEntry result = null;

            foreach (LecturePlanEntry item in Entries)
            {
                if (entry.Equals(item))
                {
                    result = item;
                }
            }
            return(result);
        }
Exemplo n.º 2
0
 public void RemoveEntry(LecturePlanEntry entry)
 {
     Entries.Remove(entry);
 }
Exemplo n.º 3
0
 public void AddEntry(LecturePlanEntry entry)
 {
     Entries.Add(entry);
 }