コード例 #1
0
ファイル: SignInHandler.cs プロジェクト: csorgod/Finances.Api
 public SignInHandler(IFinancesDbContext context, IMediator mediator, IOptions <AppSettings> configuration)
 {
     _context      = context;
     _mediator     = mediator;
     Configuration = configuration.Value;
     cryptoHelper  = new CryptoHelper();
 }
コード例 #2
0
 public GetProfileByUserIdHandler(IFinancesDbContext context)
 {
     _context = context;
 }
コード例 #3
0
 public GetIncomingsByUserIdHandler(IFinancesDbContext context)
 {
     _context = context;
 }
コード例 #4
0
 public CreateAccountHandler(IFinancesDbContext context, IMediator mediator, CryptoHelper cryptoHelper)
 {
     _context      = context;
     _mediator     = mediator;
     _cryptoHelper = cryptoHelper;
 }
コード例 #5
0
 public DeleteFavoredHandler(IFinancesDbContext context, IMediator mediator)
 {
     _context  = context;
     _mediator = mediator;
 }
コード例 #6
0
 public GetExpensesByUserIdHandler(IFinancesDbContext context)
 {
     _context = context;
 }
コード例 #7
0
 public GetFavoredByIdHandler(IFinancesDbContext context)
 {
     _context = context;
 }
コード例 #8
0
 public CreateIncomingHandler(IFinancesDbContext context, IMediator mediator)
 {
     _context  = context;
     _mediator = mediator;
 }
コード例 #9
0
 public AccountHandler(IFinancesDbContext context, IMediator mediator)
 {
     _context  = context;
     _mediator = mediator;
 }
コード例 #10
0
 public CancelTokenHandler(IFinancesDbContext context, IMediator mediator)
 {
     _context  = context;
     _mediator = mediator;
 }