public IdentityService( BillTrackerContext context, IdentityConfiguration configuration, SetupNewUser setupNewUser) { _context = context; _configuration = configuration; _setupNewUser = setupNewUser; }
public UploadBillFile(BillTrackerContext context, IBillFileStorage billFileStorage) { _context = context; _billFileStorage = billFileStorage; }
public InvoicesController(BillTrackerContext context) { _context = context; }
public CreateExpenseType(BillTrackerContext context) { _context = context; }
public DashboardQuery(BillTrackerContext context) { _context = context; }
public CompaniesController(BillTrackerContext context) { _context = context; }
public SaveExpenseAggregate(BillTrackerContext context) { _context = context; }
public ExpensesQuery(BillTrackerContext context) { _context = context; }
public SetupNewUser(BillTrackerContext context) { _context = context; }
public AddressesController(BillTrackerContext context) { _context = context; }
public GenericRepository(BillTrackerContext context) { _context = context; _unitOfWork = new UnitOfWork(context); }
public AddExpense(BillTrackerContext context) { _context = context; }
public UnitOfWork(BillTrackerContext dbContext) { _dbContext = dbContext; }