示例#1
0
 public AddressRepository(CryptocopDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public UserRepository(CryptocopDbContext dbContext, IMapper mapper, ITokenRepository tokenRepository)
 {
     _dbContext       = dbContext;
     _mapper          = mapper;
     _tokenRepository = tokenRepository;
 }
示例#3
0
 public OrderRepository(CryptocopDbContext dbContext)
 {
     _dbContext = dbContext;
 }
示例#4
0
 public OrderRepository(CryptocopDbContext dbContext, IMapper mapper)
 {
     _dbContext = dbContext;
     _mapper    = mapper;
 }
 public ShoppingCartRepository(CryptocopDbContext dbContext)
 {
     _dbContext = dbContext;
 }
示例#6
0
 public TokenRepository(CryptocopDbContext dbContext)
 {
     _dbContext = dbContext;
 }
示例#7
0
 public PaymentRepository(CryptocopDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public PaymentRepository(CryptocopDbContext dbContext, IMapper mapper)
 {
     _dbContext = dbContext;
     _mapper    = mapper;
 }
示例#9
0
 public ShoppingCartRepository(CryptocopDbContext dbContext, IMapper mapper)
 {
     _dbContext = dbContext;
     _mapper    = mapper;
 }
示例#10
0
 public AddressRepository(CryptocopDbContext dbContext, IMapper mapper)
 {
     _dbContext = dbContext;
     _mapper = mapper;
 }