Business.Services.ArticleService.GetAll C# (CSharp) Method

GetAll() public method

public GetAll ( ) : Article[]
return Article[]
        public Article[] GetAll()
        {
            return _articleRepository.GetAll().ToArray();
        }