Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CustomerAddressRepository"/> class.
 /// </summary>
 /// <param name="work">
 /// The work.
 /// </param>
 /// <param name="logger">
 /// The logger.
 /// </param>
 /// <param name="sqlSyntax">
 /// The SQL Syntax.
 /// </param>
 public CustomerAddressRepository(IDatabaseUnitOfWork work, ILogger logger, ISqlSyntaxProvider sqlSyntax)
     : base(work, logger, sqlSyntax)
 {
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CustomerAddressRepository"/> class.
 /// </summary>
 /// <param name="work">
 /// The work.
 /// </param>
 /// <param name="cache">
 /// The cache.
 /// </param>
 public CustomerAddressRepository(IDatabaseUnitOfWork work, IRuntimeCacheProvider cache)
     : base(work, cache)
 {
 }
Пример #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PaymentRepository"/> class.
 /// </summary>
 /// <param name="work">
 /// The work.
 /// </param>
 /// <param name="cache">
 /// The cache.
 /// </param>
 /// <param name="logger">
 /// The logger.
 /// </param>
 /// <param name="sqlSyntax">
 /// The SQL syntax.
 /// </param>
 public PaymentRepository(IDatabaseUnitOfWork work, IRuntimeCacheProvider cache, ILogger logger, ISqlSyntaxProvider sqlSyntax)
     : base(work, cache, logger, sqlSyntax)
 {
 }
Пример #4
0
 public ItemCacheRepository(IDatabaseUnitOfWork work, IRuntimeCacheProvider cache, IItemCacheLineItemRepository itemCacheLineItemRepository)
     : base(work, cache)
 {
     _itemCacheLineItemRepository = itemCacheLineItemRepository;
 }
Пример #5
0
 public PaymentRepository(IDatabaseUnitOfWork work, IRuntimeCacheProvider cache)
     : base(work, cache)
 {
 }
Пример #6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PaymentRepository"/> class.
 /// </summary>
 /// <param name="work">
 /// The work.
 /// </param>
 /// <param name="logger">
 /// The logger.
 /// </param>
 /// <param name="sqlSyntax">
 /// The SQL syntax.
 /// </param>
 public PaymentRepository(IDatabaseUnitOfWork work, ILogger logger, ISqlSyntaxProvider sqlSyntax)
     : base(work, logger, sqlSyntax)
 {
 }