public DiscountController(IDiscountService discountService, ITicketService ticketService, IHangfireService hangfireService, UserManager <User> userManager)
 {
     _discountService = discountService;
     _ticketService   = ticketService;
     _hangfireService = hangfireService;
     _userManager     = userManager;
 }
Пример #2
0
 public VideoRequestController(
     IVideoRequestService videoRequestService,
     IVideoRequestTypeService videoRequestTypeService,
     ITalentService talentService,
     ICustomerService customerService,
     IHangfireService hangfireService,
     ITalentBalanceService talentBalanceService,
     ICustomerBalanceService customerBalanceService,
     IVideoRequestPriceCalculationsService videoRequestPriceCalculationsService,
     IInvoiceService invoiceService,
     IPaymoService paymoService,
     ILogger <VideoRequestController> logger)
 {
     VideoRequestService     = videoRequestService;
     VideoRequestTypeService = videoRequestTypeService;
     TalentService           = talentService;
     CustomerService         = customerService;
     HangfireService         = hangfireService;
     TalentBalanceService    = talentBalanceService;
     CustomerBalanceService  = customerBalanceService;
     VideoRequestPriceCalculationsService = videoRequestPriceCalculationsService;
     InvoiceService = invoiceService;
     PaymoService   = paymoService;
     _logger        = logger;
 }
Пример #3
0
 public DiscountService(IDiscountRepository discountRepository, IUserRepository userRepository, IVendorRepository vendorRepository, IHangfireService hangfireService, ITagService tagRepository, IPointOfSaleService pointOfSaleService, IMapper mapper, IConfigRepository configRepository)
 {
     _discountRepository = discountRepository;
     _userRepository     = userRepository;
     _vendorRepository   = vendorRepository;
     _hangfireService    = hangfireService;
     _tagRepository      = tagRepository;
     _pointOfSaleService = pointOfSaleService;
     _mapper             = mapper;
     _configRepository   = configRepository;
 }
 public OperationsController(
     ICrmService crm,
     IStore store,
     INotifyService notifyService,
     IHangfireService hangfire,
     IRedisService redis,
     IEnv env)
 {
     _store         = store;
     _crm           = crm;
     _notifyService = notifyService;
     _hangfire      = hangfire;
     _redis         = redis;
     _env           = env;
 }
Пример #5
0
 public AttachmentController(
     IAttachmentService attachmentService,
     ICustomerService customerService,
     ITalentService talentService,
     IVideoRequestService videoRequestService,
     IHangfireService hangfireService,
     IHostingEnvironment env,
     ILogger <AttachmentController> logger)
 {
     AttachmentService   = attachmentService;
     CustomerService     = customerService;
     TalentService       = talentService;
     VideoRequestService = videoRequestService;
     HangfireService     = hangfireService;
     _env    = env;
     _logger = logger;
 }
Пример #6
0
 public Worker(ILogger <Worker> logger, IHangfireService hangfireService)
 {
     this.logger          = logger;
     this.hangfireService = hangfireService;
 }
Пример #7
0
 public HangfireController(IHangfireService hangfireService)
 {
     this.hangfireService = hangfireService;
 }