Exemplo n.º 1
0
 public PostViewTestBase()
 {
     var postViewRepostioryStub = new InMemoryViewRepository<PostItem>();
     PostView = new PostView(postViewRepostioryStub);
 }
Exemplo n.º 2
0
 public BlogViewTestBase()
 {
     var blogViewRepository = new InMemoryViewRepository<BlogViewItem>();
     BlogView = new BlogView(blogViewRepository);
 }