Esempio n. 1
0
 public BusinessmanService(IBusinessmanRepository businessmanRepository, IPaymentClientProxy payMentClientProxy, IRoleRepository roleRepository, ISmsTemplateRepository smsTemplateRepository, ISMSChargeSetRepository smsChargeRepository, IOrderRepository orderRepository, IAfterSaleOrderRepository afterSaleOrderRepository, IOPENScanRepository openScanRepository, CustomerInfoDomainService customerInfoDomainService, StationBuyGroupDomainService stationBuyGroupDomainService)
 {
     this.businessmanRepository         = businessmanRepository;
     this.roleRepository                = roleRepository;
     this.payMentClientProxy            = payMentClientProxy;
     this.smsTemplateRepository         = smsTemplateRepository;
     this.smsChargeRepository           = smsChargeRepository;
     this.orderRepository               = orderRepository;
     this.afterSaleOrderRepository      = afterSaleOrderRepository;
     this.openScanRepository            = openScanRepository;
     this._customerInfoDomainService    = customerInfoDomainService;
     this._stationBuyGroupDomainService = stationBuyGroupDomainService;
 }
Esempio n. 2
0
 public NotifyPatientWhenAppointmentRescheduledEvent(
     IEmailTemplateRepository emailTemplateRepository,
     ISmsTemplateRepository smsTemplateRepository,
     IAppointmentService appointmentService,
     IRepository <Appointment> appointmentRepository,
     IUserService userService,
     IJobManager jobManager,
     IUserPreferenceRepository preferenceRepository)
 {
     _emailTemplateRepository = emailTemplateRepository;
     _smsTemplateRepository   = smsTemplateRepository;
     _appointmentService      = appointmentService;
     _appointmentRepository   = appointmentRepository;
     _userService             = userService;
     _jobManager           = jobManager;
     _preferenceRepository = preferenceRepository;
 }
 public SendConfirmationWhenAppointmentCreatedEventHandler(
     IAppointmentService appointmentService,
     IRepository <Appointment> appointmentRepository,
     IEmailTemplateRepository emailTemplateRepository,
     ISmsTemplateRepository smsTemplateRepository,
     IUserService userService,
     IJobManager jobManager,
     ILogger <SendConfirmationWhenAppointmentCreatedEventHandler> logger,
     IUserPreferenceRepository preferenceRepository)
 {
     _appointmentService      = appointmentService;
     _appointmentRepository   = appointmentRepository;
     _emailTemplateRepository = emailTemplateRepository;
     _smsTemplateRepository   = smsTemplateRepository;
     _userService             = userService;
     _jobManager           = jobManager;
     _logger               = logger;
     _preferenceRepository = preferenceRepository;
 }
Esempio n. 4
0
 public AppointmentReminderJob(
     IAppointmentService appointmentService,
     IRepository <Appointment> appointmentRepository,
     IEmailTemplateRepository emailTemplateRepository,
     ISmsTemplateRepository smsTemplateRepository,
     IUserService userService,
     IJobManager jobManager,
     ILogger <AppointmentReminderJob> logger,
     IUserPreferenceRepository preferenceRepository)
 {
     _appointmentService      = appointmentService;
     _appointmentRepository   = appointmentRepository;
     _emailTemplateRepository = emailTemplateRepository;
     _smsTemplateRepository   = smsTemplateRepository;
     _userService             = userService;
     _jobManager           = jobManager;
     _logger               = logger;
     _preferenceRepository = preferenceRepository;
 }
 public SmsTemplateController(ISmsTemplateRepository smsTemplateRpt,
                              IMapper mapper)
 {
     _smsTemplateRpt = smsTemplateRpt;
     _mapper         = mapper;
 }
 public SmsTemplateAppService(ISmsTemplateRepository repository) : base(repository)
 {
     this._repository     = repository;
     LocalizationResource = typeof(SmsTemplateManagementResource);
 }
Esempio n. 7
0
 public SmsTemplateService(ISmsTemplateRepository repository) : base(repository)
 {
     this._repository = repository;
 }