コード例 #1
0
 public CalculateAccountingPointHandler(ErcContext ercContext, IServiceProvider serviceProvider)
 {
     _ercContext      = ercContext;
     _serviceProvider = serviceProvider;
 }
コード例 #2
0
 public GetBuildingTypesHandler(ErcContext ercContext)
 {
     _ercContext = ercContext;
 }
コード例 #3
0
 public UpdateBranchOfficeCommandHandler(ErcContext ercContext)
 {
     _ercContext = ercContext;
 }
コード例 #4
0
 public UpdatePaymentCommandHandler(ErcContext ercContext)
 {
     _ercContext = ercContext;
 }
コード例 #5
0
 public ConsumptionExcelParser(ErcContext ercContext, IBranchOfficeService branchOfficeService)
 {
     _ercContext          = ercContext;
     _branchOfficeService = branchOfficeService;
 }
コード例 #6
0
 public PaymentsDbfParser(ErcContext ercContext, IBranchOfficeService branchOfficeService)
 {
     _ercContext          = ercContext;
     _branchOfficeService = branchOfficeService;
 }
コード例 #7
0
 public TariffsController(ErcContext ercContext)
 {
     _ercContext = ercContext ?? throw new ArgumentNullException(nameof(ercContext));
 }
コード例 #8
0
 public BranchOfficeService(ErcContext dbContext, IMediator mediator)
 {
     _dbContext = dbContext;
     _mediator  = mediator;
 }
コード例 #9
0
 public OpenNewContractCommandHandler(ErcContext ercContext)
 {
     _ercContext = ercContext;
 }
コード例 #10
0
 public GetPersonByIdHandler(ErcContext ercContext, IMapper mapper)
 {
     _ercContext = ercContext;
     _mapper     = mapper;
 }
コード例 #11
0
 public ProcessPaymentBatchHandler(ErcContext ercContext)
 {
     _ercContext = ercContext;
 }
コード例 #12
0
 public GetComapnyByIdHandler(ErcContext ercContext, IMapper mapper)
 {
     _ercContext = ercContext;
     _mapper     = mapper;
 }
コード例 #13
0
 public CloseAccountingPointExemptionHandler(ErcContext ercContext, IMediator mediator)
 {
     _ercContext = ercContext;
     _mediator   = mediator;
 }
コード例 #14
0
 public GetUsageCategoriesHandler(ErcContext ercContext, IMapper mapper)
 {
     _ercContext = ercContext;
     _mapper     = mapper;
 }
コード例 #15
0
 public ExportsController(ErcContext ercContext)
 {
     _ercContext = ercContext;
 }
コード例 #16
0
 public GetPaymentsChannelByIdHandler(ErcContext ercContext)
 {
     _ercContext = ercContext;
 }
コード例 #17
0
 public GetTaxInvoiceByIdHandler(ErcContext ercContext, IMapper mapper)
 {
     _ercContext = ercContext;
     _mapper     = mapper;
 }
コード例 #18
0
 public DeletePaymentHandler(ErcContext ercContext)
 {
     _ercContext = ercContext;
 }
コード例 #19
0
 public AccountingPointExemptionClosedHandler(ErcContext ercContext, IBranchOfficeService branchOfficeService)
 {
     _ercContext          = ercContext;
     _branchOfficeService = branchOfficeService;
 }
コード例 #20
0
 public UpdateCompanyCommandHandler(ErcContext ercContext)
 {
     _ercContext = ercContext;
 }
コード例 #21
0
 public CreateTaxInvoiceCommandHandler(ErcContext ercContext)
 {
     _ercContext = ercContext;
 }
コード例 #22
0
 public UpdatePersonCommandHandler(ErcContext ercContext)
 {
     _ercContext = ercContext;
 }
コード例 #23
0
 public PeopleController(ErcContext ercContext, IMediator mediator)
 {
     _ercContext = ercContext ?? throw new ArgumentNullException(nameof(ercContext));
     _mediator   = mediator;
 }
コード例 #24
0
 public GetExemptionCategoriesHandler(ErcContext ercContext)
 {
     _ercContext = ercContext;
 }
コード例 #25
0
 public PaymentBatchesController(ErcContext ercContext, IMediator mediator, IBranchOfficeService branchOfficeService)
 {
     _ercContext          = ercContext ?? throw new ArgumentNullException(nameof(ercContext));
     _mediator            = mediator;
     _branchOfficeService = branchOfficeService;
 }
コード例 #26
0
 public GetAccountingPointByIdHandler(ErcContext ercContext, IMapper mapper)
 {
     _ercContext = ercContext;
     _mapper     = mapper;
 }
コード例 #27
0
 public UnitOfWork(ErcContext ercContext, IBus bus)
 {
     _ercContext = ercContext;
     _bus        = bus;
 }
コード例 #28
0
 public GetPaymentsByPartHandler(ErcContext ercContext, IMapper mapper)
 {
     _ercContext = ercContext;
     _mapper     = mapper;
 }
 public GetInvoicesByAccountingPointHandler(ErcContext ercContext, IMapper mapper)
 {
     _ercContext = ercContext;
     _mapper     = mapper;
 }
 public DistributionSystemOperatorsController(ErcContext ercContext)
 {
     _ercContext = ercContext ?? throw new ArgumentNullException(nameof(ercContext));
 }