Blog.Services.Implementation.AlbumService.GetByUser C# (CSharp) Метод

GetByUser() публичный Метод

public GetByUser ( int userId ) : List
userId int
Результат List
        public List<Album> GetByUser(int userId)
        {
            return _albumLogic.GetByUser(userId);
        }