Blog.Services.Implementation.PostContentsService.Delete C# (CSharp) Method

Delete() public method

public Delete ( int postContentId ) : bool
postContentId int
return bool
        public bool Delete(int postContentId)
        {
            return _postContentsLogic.Delete(postContentId);
        }
    }