예제 #1
0
 public BookController(IBooksDAL booksDAL, IUsersDAL usersDAL, IReviewsDAL reviewDAL, IReadingListDAL rlDAL)
 {
     this.booksDAL  = booksDAL;
     this.usersDAL  = usersDAL;
     this.reviewDAL = reviewDAL;
     this.rlDAL     = rlDAL;
 }
예제 #2
0
 public HomeController(IBooksDAL booksDAL)
 {
     this.booksDAL = booksDAL;
 }