public GetChartByCategoriesQuery(PiggyContext context, GetChartCommand command) : base(context) => _command = command;
public ArchiveCategoryHandler(PiggyContext context, ArchiveCategoryCommand command) : base(context, command) { }
public GetBudgetOperationQuery(PiggyContext context, GetOperationQuery query) : base(context) => _query = query;
protected ServiceBase(PiggyContext context, ILogger logger) { HandlerDispatcher = new HandlerDispatcher(context, logger); QueryDispatcher = new QueryDispatcher(context, logger); }
public GetChartByExpensePerDays(PiggyContext context, GetChartCommand command) : base(context) => _command = command;
public DeleteOperationsHandler(PiggyContext context, DeleteOperationsCommand command) : base(context, command) { }
public ArchiveAccountHandler(PiggyContext context, ArchiveAccountCommand command) : base(context, command) { }
public GetAccountByIdQuery(PiggyContext context, int accountId) : base(context) => _accountId = accountId;
public UpdatePartialTransferOperationHandler(PiggyContext context, UpdatePartialTransferOperationCommand command) : base(context, command) { }
public DeleteOperationService(PiggyContext context) { _context = context; }
public AddTransferOperationHandler(PiggyContext context, AddTransferOperationCommand command) : base(context, command) { }
public GetCategoriesQuery(PiggyContext context, Guid userId, bool all) : base(context) => (_userId, _all) = (userId, all);
public DeleteTransferOperationHandler(PiggyContext context, DeleteTransferOperationCommand command) : base(context, command) { }
public DeleteBudgetOperationHandler(PiggyContext context, DeleteBudgetOperationCommand command) : base(context, command) { }
public DeleteCategoriesHandler(PiggyContext context, DeleteCategoriesCommand command) : base(context, command) { }
public UpdateBudgetOperationHandler(PiggyContext context, UpdateBidgetOperationCommand command) : base(context, command) { }
public HandlerDispatcher(PiggyContext context, ILogger logger) => (_context, _logger) = (context, logger);
public AddCategoryBatchHandler(PiggyContext context, AddCategoryBatchCommand command) : base(context, command) { }
public OperationService(PiggyContext context, ILogger logger) : base(context, logger) { }
public AccountService(PiggyContext context, ILogger logger) : base(context, logger) { }
public GetTransferOperationQuery(PiggyContext context, GetOperationQuery query) : base(context) => _query = query;
public UpdateAccountHandler(PiggyContext context, UpdateAccountCommand command) : base(context, command) { }
public GetAccountsQuery(PiggyContext context, Guid userId, bool all) : base(context) => (_userId, _all) = (userId, all);
protected BaseHandler(PiggyContext context, TCommand command) : base(context) => Command = command;
public QueryDispatcher(PiggyContext context, ILogger logger) => (_context, _logger) = (context, logger);
public AddAccountBatchHandler(PiggyContext context, AddAccountBatchCommand command) : base(context, command) { }
public DeleteAccountsHandler(PiggyContext context, DeleteAccountsCommand command) : base(context, command) { }
public DbWorker(PiggyContext context) => _context = context;
public AddBudgetOperationHandler(PiggyContext context, AddBudgetOperationCommand command) : base(context, command) { }
public GetOperationsQuery(PiggyContext context, GetOperationsCommand command) : base(context) => _command = command;