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

Delete() public method

public Delete ( int id ) : bool
id int
return bool
        public bool Delete(int id)
        {
            return _commentsLogic.Delete(id);
        }
    }