public SchedulerService(PlutusDbContext context) => _context = context;
 public CartBackendService(IPaymentService paymentService, PlutusDbContext context)
 {
     _context        = context;
     _paymentService = paymentService;
 }
Example #3
0
 public BudgetService(PlutusDbContext context, ILoggerService logger)
 {
     _context = context;
     _logger  = logger;
 }
Example #4
0
 public PaymentService(PlutusDbContext context) => _context = context;
Example #5
0
 public GoalsService(PlutusDbContext context)
 {
     _context = context;
 }