Example #1
0
 public PostViewTestBase()
 {
     var postViewRepostioryStub = new InMemoryViewRepository<PostItem>();
     PostView = new PostView(postViewRepostioryStub);
 }
Example #2
0
 public BlogViewTestBase()
 {
     var blogViewRepository = new InMemoryViewRepository<BlogViewItem>();
     BlogView = new BlogView(blogViewRepository);
 }