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

GetByUser() public method

public GetByUser ( int userId ) : List
userId int
return List
        public List<Education> GetByUser(int userId)
        {
            return _educationLogic.GetByUser(userId);
        }