public OrderingService(BooksContext booksContext) { _booksContext = booksContext; }
public BooksRepository(BooksContext context, IHttpClientFactory httpClientFactory) { _context = context ?? throw new ArgumentNullException(nameof(context)); _httpClientFactory = httpClientFactory ?? throw new ArgumentNullException(nameof(httpClientFactory)); }
public BooksService(BooksContext context) => _booksContext = context;
public DetailsModel(BooksContext context) : base(context) { this.BookTitles = new List <AuthorViewModel>(); }
public PosterController(BooksContext context) { _context = context; }
public BooksRepository() { _db = new BooksContext(); }
public CreateBooksService(BooksContext booksContext) { _booksContext = booksContext; }
public SampleFunction(BooksContext booksContext) => _booksContext = booksContext;
public TitlesController(BooksContext context) { _context = context; }
public BookRepository(BooksContext booksContext, IHttpClientFactory httpClientFactory) { _booksContext = booksContext ?? throw new ArgumentNullException(nameof(booksContext)); _httpClient = httpClientFactory ?? throw new ArgumentNullException(nameof(httpClientFactory)); }
public AddModel(BooksContext context) : base(context) { }
public CrudRepository(BooksContext context) { Context = context; DbSet = Context.Set <TEntity>(); }
public DetailsModel(BooksContext context) : base(context) { }
public BooksRepository(BooksContext context) { _context = context ?? throw new ArgumentNullException(nameof(context)); }
public CategoryController(BooksContext booksContext) { _booksContext = booksContext; }
public BooksDBService(BooksContext booksContext) { _booksContext = booksContext ?? throw new ArgumentNullException(nameof(booksContext)); }
public Repository(BooksContext context) { _context = context; this._set = _context.Set <T>(); }
public AuthorRepository(BooksContext context) : base(context) { }
public BooksController(BooksContext booksContext) { _booksContext = booksContext; }
public LibrosController(BooksContext context) { _context = context; }
public ComicsController(BooksContext context) { _context = context; }
public CreateBookRequestHandler(BooksContext dbContext) { this.dbContext = dbContext; }
public ChaptersController(BooksContext booksContext) { _booksContext = booksContext; }
public PurchaseRepository(BooksContext ctx) : base(ctx) { }
public AuthorsController(BooksContext context) { _context = context; }
public BooksRepository(BooksContext booksContext, IHttpClientFactory httpClientFactory, ILogger <BooksRepository> logger) { _booksContext = booksContext ?? throw new ArgumentNullException(nameof(booksContext)); _httpClientFactory = httpClientFactory ?? throw new ArgumentNullException(nameof(httpClientFactory)); _logger = logger ?? throw new ArgumentNullException(nameof(logger)); }
public BookRepository(BooksContext context) { this.db = context; }
public TradesService() { // context do bazy danncyh EF context = new BooksContext(); }
public BookService(BooksContext context) { this._context = context; }
public BookRepository(BooksContext context) { _context = context; }
public BookRepository(BooksContext context) : base(context) { }