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

Delete() public method

public Delete ( int hobbyId ) : bool
hobbyId int
return bool
        public bool Delete(int hobbyId)
        {
            return _hobbyLogic.Delete(hobbyId);
        }
    }