Skip to content
Snippets Groups Projects
Commit c6aa3c01 authored by Jan H's avatar Jan H
Browse files

Update Blog.DAL/Repository/BlogRepository.cs

parent 6ae5ab5a
No related merge requests found
using System.Collections.Generic;
using System.Collections.Generic;
using Blog.DAL.Infrastructure;
using Blog.DAL.Model;
using System;
......@@ -16,6 +16,7 @@ namespace Blog.DAL.Repository
public IEnumerable<Post> GetAllPosts()
{
return new List<Post>();
return _context.Posts;
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment