public GetPaymentHistoriesQueryHandler(
     ILogger <GetPaymentHistoriesQuery> logger,
     IPaymentHistoryService paymentHistoryService,
     IMapper mapper)
     : base(logger)
 {
     _paymentHistoryService = paymentHistoryService;
     _mapper = mapper;
 }
示例#2
0
 public CreatePaymentHistoryCommandHandler(
     IValidator <CreatePaymentHistoryCommand> validator,
     ILogger <CreatePaymentHistoryCommand> logger,
     IPaymentHistoryService paymentHistoryService,
     IMapper mapper)
     : base(validator, logger)
 {
     _paymentHistoryService = paymentHistoryService;
     _mapper = mapper;
 }
 public ExaminationFormController(IServiceProvider serviceProvider, ILogger <BaseController <ExaminationForms, ExaminationFormModel, SearchExaminationForm> > logger, IWebHostEnvironment env) : base(serviceProvider, logger, env)
 {
     this.domainService               = serviceProvider.GetRequiredService <IExaminationFormService>();
     paymentHistoryService            = serviceProvider.GetRequiredService <IPaymentHistoryService>();
     examinationHistoryService        = serviceProvider.GetRequiredService <IExaminationHistoryService>();
     examinationFormService           = serviceProvider.GetRequiredService <IExaminationFormService>();
     medicalRecordService             = serviceProvider.GetRequiredService <IMedicalRecordService>();
     examinationScheduleService       = serviceProvider.GetRequiredService <IExaminationScheduleService>();
     examinationScheduleDetailService = serviceProvider.GetRequiredService <IExaminationScheduleDetailService>();
     specialListTypeService           = serviceProvider.GetRequiredService <ISpecialListTypeService>();
 }
示例#4
0
 public ConversationService(
     IDbContextProvider dbContextProvider, 
     SiteUserManager userManager, 
     IDoctorService doctorService, 
     IPatientService patientService, 
     IPaymentHistoryService paymentService)
 {
     _dbContext = dbContextProvider.Context;
     _userManager = userManager;
     _doctorService = doctorService;
     _patientService = patientService;
     _paymentService = paymentService;
 }
示例#5
0
 public PaymentsHistoryController(IPaymentHistoryService paymentHistoryService, IAgentContextService agentContextService)
 {
     _paymentHistoryService = paymentHistoryService;
     _agentContextService   = agentContextService;
 }
示例#6
0
 public PaymentHistoryController(IPaymentHistoryService paymentHistoryService)
 {
     this.paymentHistoryService = paymentHistoryService;
 }
示例#7
0
 public PaymentHistoriesController(IPaymentHistoryService transactionService)
 {
     _paymentHistoryService = transactionService;
 }
示例#8
0
 public ConversationController(IConversationService conversationService, IPaymentHistoryService paymentService, IPatientService patientService)
 {
     _conversationService = conversationService;
     _paymentService = paymentService;
     _patientService = patientService;
 }
 public ProcessPaymentController(IProcessPaymentService paymentService,
                                 IPaymentHistoryService historyService)
 {
     _paymentService = paymentService;
     _historyService = historyService;
 }
 public PaymentHistoryController(IPaymentHistoryService paymentHistoryService, IAuthenticateService authenticateService)
 {
     _paymentHistoryService = paymentHistoryService;
     _authenticateService   = authenticateService;
 }
示例#11
0
		public PaymentHistoryController(IControllerPluginFactory controllerPluginFactory, IPaymentHistoryService paymentHistoryService)
			: base(controllerPluginFactory)
		{
			_paymentHistoryService = ValidationUtil.CheckOnNullAndThrowIfNull(paymentHistoryService);
		}