コード例 #1
0
ファイル: BookController.cs プロジェクト: VVasl/BooksStore
 public BookController(BooksStoreContext ctx, IBooksStoreRepository repository, IMapper mapper)
 {
     _ctx        = ctx;
     _repository = repository;
     _logger     = LogManager.GetCurrentClassLogger();
     _mapper     = mapper;
 }
コード例 #2
0
ファイル: OrdersController.cs プロジェクト: VVasl/BooksStore
 public OrdersController(IBooksStoreRepository repository, IMapper mapper, UserManager <StoreUser> userManager)
 {
     _repository  = repository;
     _logger      = LogManager.GetCurrentClassLogger();
     _mapper      = mapper;
     _userManager = userManager;
 }
コード例 #3
0
ファイル: AuthorController.cs プロジェクト: medlotf/BookStore
 public AuthorController(IBooksStoreRepository <Author> authorRepository)
 {
     this.authorRepository = authorRepository;
 }
コード例 #4
0
 public OrderItemsController(IBooksStoreRepository repository, IMapper mapper)
 {
     _repository = repository;
     _logger     = LogManager.GetCurrentClassLogger();
     _mapper     = mapper;
 }
コード例 #5
0
ファイル: BookController.cs プロジェクト: medlotf/BookStore
 public BookController(IBooksStoreRepository <Book> bookRepository, IBooksStoreRepository <Author> authorRepository, IHostingEnvironment hosting)
 {
     this.bookRepository   = bookRepository;
     this.authorRepository = authorRepository;
     this.hosting          = hosting;
 }