BgEngine.Domain.EntityModel.Subscription.DeletePost C# (CSharp) Method

DeletePost() public method

Remove a Post from the Post Collection
public DeletePost ( Post post ) : void
post Post
return void
        public void DeletePost(Post post)
        {
            this.Posts.Remove(post);
        }