Exemple #1
0
 public BookStoreRepository()
 {
     this.authorQueryRepository = new AuthorQueryRepository();
     this.context             = new Models.Context();
     this.bookQueryRepository = new BookQueryRepository();
 }
 public AuthorApplication()
 {
     this.authorStoreRepository = new AuthorStoreRepository();
     this.authorQueryRepository = new AuthorQueryRepository();
 }