public RepositoryBase(ProductAPIDBContext repositoryContext)
 {
     this._ProductAPIDBContext = repositoryContext;
 }
 public RepositoryWrapper(ProductAPIDBContext productAPIDBContext)
 {
     _productAPIDBContext = productAPIDBContext;
 }
Beispiel #3
0
 public ProductRepository(ProductAPIDBContext repositoryContext) : base(repositoryContext)
 {
 }
 public AuthRepository(ProductAPIDBContext context, IConfiguration configuration)
 {
     _configuration = configuration;
     _context       = context;
 }