public InvoiceHistoryApiController(IUnitOfWork unitOfWork, IMailHelper mailHelper, IApiClient apiClient,
                                    IPdfManager pdfManager, IWebClient webClient, IMyJwtDecoder jwtDecoder, ICache cache) :
     base(unitOfWork, mailHelper, apiClient, jwtDecoder, cache)
 {
     this.pdfManager = pdfManager;
     this.webClient  = webClient;
 }
Пример #2
0
 // GET: Month
 public ChartPeriodController(IDataService dataService,
                              ICommentService commentService,
                              IWebHostEnvironment environment,
                              IActionPlanService actionPlanService,
                              ISettingService settingService,
                              IMailHelper mailHelper,
                              IKPILevelService kPILevelService,
                              IFavouriteService favouriteService,
                              IConfiguration configuaration,
                              IHubContext <HenryHub> hubContext,
                              INotificationService notificationService, IConfiguration configuration)
 {
     _environment         = environment;
     _configuration       = configuration;
     _dataService         = dataService;
     _commentService      = commentService;
     _actionPlanService   = actionPlanService;
     _settingService      = settingService;
     _mailHelper          = mailHelper;
     _kPILevelService     = kPILevelService;
     _favouriteService    = favouriteService;
     _configuaration      = configuaration;
     _hubContext          = hubContext;
     _notificationService = notificationService;
 }
Пример #3
0
 public AccountController(IUserHelper userHelper,
                          IConverterHelper converterHelper,
                          IMailHelper mailHelper,
                          IConfiguration configuration,
                          IClientRepository clientRepository,
                          IAdminRepository adminRepository,
                          IDoctorRepository doctorRepository,
                          IAppointmentRepository appointmentRepository,
                          IImageHelper imageHelper,
                          ISpecializationRepository specializationRepository,
                          IAnimalRepository animalRepository,
                          IDashBoardHelper dashBoardHelper)
 {
     _userHelper               = userHelper;
     _configuration            = configuration;
     _clientRepository         = clientRepository;
     _converterHelper          = converterHelper;
     _mailHelper               = mailHelper;
     _adminRepository          = adminRepository;
     _doctorRepository         = doctorRepository;
     _appointmentRepository    = appointmentRepository;
     _imageHelper              = imageHelper;
     _specializationRepository = specializationRepository;
     _animalRepository         = animalRepository;
     _dashBoardHelper          = dashBoardHelper;
 }
        public static void JobInitializer(IIocResolver iocResolver)
        {
            IMailHelper             mailHelper             = iocResolver.Resolve <IMailHelper>();
            IPushNotificationHelper pushNotificationHelper = iocResolver.Resolve <IPushNotificationHelper>();

            new MyTestScheduler(mailHelper, pushNotificationHelper).Run();
        }
Пример #5
0
 public HomeController(IEmailService Mailer, ITemplateHelper helper, IMailHelper mail, IHostingEnvironment environment)
 {
     _Mailer         = Mailer;
     _templateHelper = helper;
     _mail           = mail;
     _environment    = environment;
 }
Пример #6
0
 public AppUserRepositroy(IAppModuleRepository moduleService, IRedisHelper iRedisHepler, IMailHelper imailHelper, ILogMessageRepository logService)
 {
     this._moduleService = moduleService;
     this._iRedisHelper  = iRedisHepler;
     this._logService    = logService;
     this._imailHelper   = imailHelper;
 }
Пример #7
0
 public AccountController(IUserHelper userHelper, DataContext context, IMailHelper mailHelper, UserManager <User> userManager)
 {
     _context     = context;
     _userHelper  = userHelper;
     _mailHelper  = mailHelper;
     _userManager = userManager;
 }
 public HomeController(
     IMailHelper mailHelper,
     IFlightRepository flightRepository)
 {
     _mailHelper       = mailHelper;
     _flightRepository = flightRepository;
 }
Пример #9
0
 public OrdersController(
     IOrderRepository orderRepository,
     IMailHelper mailHelper)
 {
     _orderRepository = orderRepository;
     _mailHelper      = mailHelper;
 }
Пример #10
0
 public AccountController(
     IAppointmentRepository appointmentRepository,
     IInsuranceCompanyRepository insuranceCompanyRepository,
     IClientRepository clientRepository,
     IDoctorRepository doctorRepository,
     ISpecialityRepository specialityRepository,
     IUserRepository userRepository,
     IConfiguration configuration,
     IMailHelper mailHelper,
     IImageHelper imageHelper,
     IConverterHelper converterHelper,
     IComboHelper comboHelper
     )
 {
     _appointmentRepository      = appointmentRepository;
     _insuranceCompanyRepository = insuranceCompanyRepository;
     _clientRepository           = clientRepository;
     _doctorRepository           = doctorRepository;
     _specialityRepository       = specialityRepository;
     _userRepository             = userRepository;
     _configuration   = configuration;
     _mailHelper      = mailHelper;
     _imageHelper     = imageHelper;
     _converterHelper = converterHelper;
     _comboHelper     = comboHelper;
 }
Пример #11
0
 public AccountController(IUserHelper userHelper, IConfiguration configuration, ICountryRepository countryRepository, IMailHelper mailHelper)
 {
     this.userHelper        = userHelper;
     this.configuration     = configuration;
     this.countryRepository = countryRepository;
     this.mailHelper        = mailHelper;
 }
Пример #12
0
 public AccountController(IUserHelper userHelper, IConfiguration configuration, DataContext dataContext,
                          IMailHelper mailHelper)
 {
     _dataContext   = dataContext;
     _mailhelper    = mailHelper;
     _userHelper    = userHelper;
     _configuration = configuration; // exta inyeccion sirve para validar token
 }
Пример #13
0
 public AccountController(IRedisHelper redisHelper, IMailHelper imailHelper, IAppUserRepository appUserRepository, IReviewRepository reviewRepository, IGuestBookRepository guestBookRepository)
 {
     this._redisHelper         = redisHelper;
     this._imailHelper         = imailHelper;
     this._appUserRepository   = appUserRepository;
     this._reviewRepository    = reviewRepository;
     this._guestBookRepository = guestBookRepository;
 }
Пример #14
0
 public HomeController(IMailHelper mailHelper,
                       IUserHelper userHelper,
                       DataContext context)
 {
     _mailHelper = mailHelper;
     _userHelper = userHelper;
     _context    = context;
 }
Пример #15
0
 public AccountController(IUserHelper userHelper, IImageHelper imageHelper, IConfiguration configuration,
                          IMailHelper mailHelper)
 {
     _userHelper    = userHelper;
     _imageHelper   = imageHelper;
     _configuration = configuration;
     _mailHelper    = mailHelper;
 }
Пример #16
0
 public AccountController(DataContext dataContext, IConfiguration configuration, IUserHelper userHelper, IMailHelper mailHelper, ICombosHelper combosHelper)
 {
     _dataContext   = dataContext;
     _configuration = configuration;
     _userHelper    = userHelper;
     _mailHelper    = mailHelper;
     _combosHelper  = combosHelper;
 }
Пример #17
0
 public EmployeesController(IUserHelper userHelper, DataContext context, ICountryRepository countryRepository, IMailHelper mailHelper, IDepartmentRepository departmentRepository)
 {
     _userHelper           = userHelper;
     _context              = context;
     _countryRepository    = countryRepository;
     _mailHelper           = mailHelper;
     _departmentRepository = departmentRepository;
 }
Пример #18
0
 public BenutzungskopieAuftragErledigtErrorConsumer(IBus bus, DataBuilder dataBuilder, IParameterHelper parameterHelper,
                                                    IMailHelper mailHelper)
 {
     this.bus             = bus;
     this.dataBuilder     = dataBuilder;
     this.parameterHelper = parameterHelper;
     this.mailHelper      = mailHelper;
 }
Пример #19
0
 public CustomersController(DataContext context,
                            IUserHelper userHelper,
                            IMailHelper mailHelper)
 {
     _context    = context;
     _userHelper = userHelper;
     _mailHelper = mailHelper;
 }
Пример #20
0
 public AccountController(IUserHelper userHelper, IDocumentHelper imageHelper, IMailHelper mailHelper, DataContext context, IConfiguration configuration)
 {
     _userHelper    = userHelper;
     _imageHelper   = imageHelper;
     _context       = context;
     _configuration = configuration;
     _mailHelper    = mailHelper;
 }
Пример #21
0
 public UsrController(IUsuarioHelper usuarioHelper,
                      IMailHelper mailHelper,
                      RN77Context context)
 {
     this.usuarioHelper = usuarioHelper;
     this.mailHelper    = mailHelper;
     this.context       = context;
 }
Пример #22
0
 public GroupBetsController(DataContext context, IConverterHelper converterHelper, IUserHelper userHelper, IImageHelper imageHelper, IMailHelper mailHelper)
 {
     _context         = context;
     _converterHelper = converterHelper;
     _userHelper      = userHelper;
     _imageHelper     = imageHelper;
     _mailHelper      = mailHelper;
 }
 public DigitalisierungsAuftragErledigtErrorConsumer(IBus bus, DataBuilder dataBuilder, IParameterHelper parameterHelper,
                                                     IMailHelper mailHelper)
 {
     this.bus             = bus;
     this.dataBuilder     = dataBuilder;
     this.parameterHelper = parameterHelper;
     this.mailHelper      = mailHelper;
 }
Пример #24
0
 public AccountController(DataContext context, IUserHelper userHelper, ICombosHelper combosHelper, IBlobHelper blobHelper, IMailHelper mailHelper)
 {
     _context      = context;
     _userHelper   = userHelper;
     _combosHelper = combosHelper;
     _blobHelper   = blobHelper;
     _mailHelper   = mailHelper;
 }
Пример #25
0
 public AdminUserController(IUserService userService, IMenuService menuService, DataContext dbContext, IMailHelper mailHelper, IConfiguration configuration)
 {
     _mailHelper    = mailHelper;
     _configuration = configuration;
     _userService   = userService;
     _menuService   = menuService;
     _dbContext     = dbContext;
 }
Пример #26
0
 public AccountController(IUserHelper userHelper, ICombosHelper combosHelper, IMenuService menuService, IMailHelper mailHelper, DataContext context)
 {
     _userHelper   = userHelper;
     _combosHelper = combosHelper;
     _mailHelper   = mailHelper;
     _menuService  = menuService;
     _dataContext  = context;
 }
Пример #27
0
 public ManagersController(DataContext dataContext,
                           IUserHelper userHelper,
                           IMailHelper mailHelper)
 {
     _dataContext = dataContext;
     _userHelper  = userHelper;
     _mailHelper  = mailHelper;
 }
Пример #28
0
 public AccountController(IUserHelper userHelper,
                          DataContext dataContext,
                          IMailHelper mailHelper
                          )
 {
     _userHelper  = userHelper;
     _dataContext = dataContext;
     _mailHelper  = mailHelper;
 }
Пример #29
0
        public bool SendStats()
        {
            _footballRepository.Refresh();
            GetPlayerStats();

            _mailHelper = new PlayerStatsMailHelper(_playerStats,_config.SmtpAgentSine);
            SetupMail(_mailHelper);
            return _mailer.SendMail();
        }
 public PatientsController(
     DataContext datacontext,
     IUserHelper userHelper,
     IMailHelper mailHelper)
 {
     _dataContext = datacontext;
     _userHelper  = userHelper;
     _mailHelper  = mailHelper;
 }
 public AccountController(
     DataContext context,
     IUserHelper userHelper,
     IMailHelper mailHelper)
 {
     _context    = context;
     _userHelper = userHelper;
     _mailHelper = mailHelper;
 }
Пример #32
0
 public bool SendTeams()
 {
     _mailHelper = new TeamsMailHelper(_playerMatchViewModel.PlayerMatches, _footballRepository, _config.SmtpAgentSine);
     SetupMail(_mailHelper);
     return _mailer.SendMail();
 }
Пример #33
0
 private void SetupMail(IMailHelper mailHelper)
 {
     _mailer = _mailer.CreateInstance(_smtpData, mailHelper);
 }
Пример #34
0
 public IMailer CreateInstance(SmtpData smtpData, IMailHelper mailHelper)
 {
     return new Mailer(smtpData, mailHelper);
 }
Пример #35
0
 public BulkSender(IRepository repository, IMailHelper mailHelper)
 {
     _repository = repository;
     _mailHelper = mailHelper;
 }
Пример #36
0
 public IMailer CreateInstance(SmtpData smtpData, IMailHelper mailHelper)
 {
     return new FakeMailer(true);
 }
Пример #37
0
 public Mailer(SmtpData smtpData, IMailHelper mailHelper)
 {
     _smtpData = smtpData;
     _mailHelper = mailHelper;
 }