Beispiel #1
0
            /// <summary>
            /// Adds the given element to the collection
            /// </summary>
            /// <param name="item">The item to add</param>
            public override void Add(IModelElement item)
            {
                IIncidentRecord incidentRecordsCasted = item.As <IIncidentRecord>();

                if ((incidentRecordsCasted != null))
                {
                    this._parent.IncidentRecords.Add(incidentRecordsCasted);
                }
            }
Beispiel #2
0
            /// <summary>
            /// Removes the given item from the collection
            /// </summary>
            /// <returns>True, if the item was removed, otherwise False</returns>
            /// <param name="item">The item that should be removed</param>
            public override bool Remove(IModelElement item)
            {
                IIncidentRecord incidentRecordItem = item.As <IIncidentRecord>();

                if (((incidentRecordItem != null) &&
                     this._parent.IncidentRecords.Remove(incidentRecordItem)))
                {
                    return(true);
                }
                return(false);
            }