Exemplo n.º 1
0
 public InteropService(TokenClaimsAccessor tokenClaimsAccessor, ExpensesDbContext dbContext, UseCycleService useCycleService, BillingCycleService billingCycleService)
 {
     this.tokenClaimsAccessor = tokenClaimsAccessor;
     this.dbContext           = dbContext;
     this.useCycleService     = useCycleService;
     this.billingCycleService = billingCycleService;
 }
Exemplo n.º 2
0
 public BillingCycleTask(IOptions <BillingCycleConfigurations> configuration, ScopedDbProvider provider, ILogger <BillingCycleTask> logger, BillingCycleService service)
 {
     this.configuration = configuration.Value;
     this.provider      = provider;
     this.logger        = logger;
     this.service       = service;
 }
Exemplo n.º 3
0
 public BillingService(TokenClaimsAccessor tokenClaimsAccessor, ExpensesDbContext dbContext, BillingCycleService billingCycleService)
 {
     this.tokenClaimsAccessor = tokenClaimsAccessor;
     this.dbContext           = dbContext;
     this.billingCycleService = billingCycleService;
 }