Exemple #1
0
 /// <summary>
 /// Empty constructor for job initialization
 /// <para>
 /// Jobs require a public empty constructor so that the
 /// scheduler can instantiate the class whenever it needs.
 /// </para>
 /// </summary>
 public ImportData()
 {
     dbContext          = new PayPalReportingContext();
     transactionService = new TransactionService(dbContext);
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TransactionService"/> class.
 /// </summary>
 /// <param name="context">The context.</param>
 public TransactionService(PayPalReportingContext context) : base(context)
 {
 }
Exemple #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DocumentationService{T}"/> class.
 /// </summary>
 public PayPalReportingService(PayPalReportingContext context)
     : base(context)
 {
 }