BgEngine.Domain.EntityModel.Comment.DeleteFromRelatedCollection C# (CSharp) Method

DeleteFromRelatedCollection() public method

Removes a related Comment from the Colecction
public DeleteFromRelatedCollection ( Comment relatedComment ) : void
relatedComment Comment
return void
        public void DeleteFromRelatedCollection(Comment relatedComment)
        {
            this.RelatedComments.Remove(relatedComment);
        }