Exemplo n.º 1
0
 public AuthorContainer(IAuthorContainerDAL iauthorContainerDAL)
 {
     this.iauthorContainerDAL = iauthorContainerDAL;
 }
Exemplo n.º 2
0
 public AuthorController(IAuthorContainerDAL iauthorContainerDAL)
 {
     authorValidator = new AuthorValidator();
     bookController  = new BookController(null);
     authorContainer = new AuthorContainer(iauthorContainerDAL);
 }