Exemple #1
0
 public BookController(IBooksDAL booksDAL, IUsersDAL usersDAL, IReviewsDAL reviewDAL, IReadingListDAL rlDAL)
 {
     this.booksDAL  = booksDAL;
     this.usersDAL  = usersDAL;
     this.reviewDAL = reviewDAL;
     this.rlDAL     = rlDAL;
 }
 public MyEchoBooksController(IReadingListDAL readingListDAL, IUsersDAL usersDAL)
 {
     this.readingListDAL = readingListDAL;
     this.usersDAL       = usersDAL;
 }