/// <summary> /// Adds the given element to the collection /// </summary> /// <param name="item">The item to add</param> public override void Add(IModelElement item) { IWorkLocation workLocationsCasted = item.As <IWorkLocation>(); if ((workLocationsCasted != null)) { this._parent.WorkLocations.Add(workLocationsCasted); } }
/// <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) { IWorkLocation workLocationItem = item.As <IWorkLocation>(); if (((workLocationItem != null) && this._parent.WorkLocations.Remove(workLocationItem))) { return(true); } return(false); }