public AddressRepository(CryptocopDbContext dbContext) { _dbContext = dbContext; }
public UserRepository(CryptocopDbContext dbContext, IMapper mapper, ITokenRepository tokenRepository) { _dbContext = dbContext; _mapper = mapper; _tokenRepository = tokenRepository; }
public OrderRepository(CryptocopDbContext dbContext) { _dbContext = dbContext; }
public OrderRepository(CryptocopDbContext dbContext, IMapper mapper) { _dbContext = dbContext; _mapper = mapper; }
public ShoppingCartRepository(CryptocopDbContext dbContext) { _dbContext = dbContext; }
public TokenRepository(CryptocopDbContext dbContext) { _dbContext = dbContext; }
public PaymentRepository(CryptocopDbContext dbContext) { _dbContext = dbContext; }
public PaymentRepository(CryptocopDbContext dbContext, IMapper mapper) { _dbContext = dbContext; _mapper = mapper; }
public ShoppingCartRepository(CryptocopDbContext dbContext, IMapper mapper) { _dbContext = dbContext; _mapper = mapper; }
public AddressRepository(CryptocopDbContext dbContext, IMapper mapper) { _dbContext = dbContext; _mapper = mapper; }