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

GetByUser() public method

public GetByUser ( int userId ) : List
userId int
return List
        public List<Hobby> GetByUser(int userId)
        {
            return _hobbyLogic.GetByUser(userId);
        }