コード例 #1
0
 public BooksController(IBookRepository bookRepo, IAuthorRepository authorRepo, ICatrgoryRepository categoryRepo, IReviewRepository reviewRepo)
 {
     _bookRepo     = bookRepo;
     _authorRepo   = authorRepo;
     _categoryRepo = categoryRepo;
     _reviewRepo   = reviewRepo;
 }
コード例 #2
0
 public CategoriesController(ICatrgoryRepository categoryRepo)
 {
     _categoryRepo = categoryRepo;
 }