コード例 #1
0
 public IdentityService(
     BillTrackerContext context,
     IdentityConfiguration configuration,
     SetupNewUser setupNewUser)
 {
     _context       = context;
     _configuration = configuration;
     _setupNewUser  = setupNewUser;
 }
コード例 #2
0
 public UploadBillFile(BillTrackerContext context, IBillFileStorage billFileStorage)
 {
     _context         = context;
     _billFileStorage = billFileStorage;
 }
コード例 #3
0
 public InvoicesController(BillTrackerContext context)
 {
     _context = context;
 }
コード例 #4
0
 public CreateExpenseType(BillTrackerContext context)
 {
     _context = context;
 }
コード例 #5
0
 public DashboardQuery(BillTrackerContext context)
 {
     _context = context;
 }
コード例 #6
0
 public CompaniesController(BillTrackerContext context)
 {
     _context = context;
 }
コード例 #7
0
 public SaveExpenseAggregate(BillTrackerContext context)
 {
     _context = context;
 }
コード例 #8
0
 public ExpensesQuery(BillTrackerContext context)
 {
     _context = context;
 }
コード例 #9
0
 public SetupNewUser(BillTrackerContext context)
 {
     _context = context;
 }
コード例 #10
0
 public AddressesController(BillTrackerContext context)
 {
     _context = context;
 }
コード例 #11
0
 public GenericRepository(BillTrackerContext context)
 {
     _context    = context;
     _unitOfWork = new UnitOfWork(context);
 }
コード例 #12
0
 public AddExpense(BillTrackerContext context)
 {
     _context = context;
 }
コード例 #13
0
 public UnitOfWork(BillTrackerContext dbContext)
 {
     _dbContext = dbContext;
 }