コード例 #1
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;
 }
コード例 #2
0
 public CustomerVideoRequestController(
     ICustomerService customerService,
     IVideoRequestSearchService searchService,
     IVideoRequestService videoRequestService,
     IVideoRequestTypeService videoRequestTypeService,
     IVideoRequestPriceCalculationsService videoRequestPriceCalculationsService,
     ILogger <CustomerVideoRequestController> logger)
 {
     CustomerService         = customerService;
     SearchService           = searchService;
     VideoRequestService     = videoRequestService;
     VideoRequestTypeService = videoRequestTypeService;
     VideoRequestPriceCalculationsService = videoRequestPriceCalculationsService;
     _logger = logger;
 }
コード例 #3
0
 public TalentVideoRequestController(
     ITalentService talentService,
     IVideoRequestSearchService searchService,
     IVideoRequestService videoRequestService,
     ITalentBalanceService talentBalanceService,
     IVideoRequestPriceCalculationsService videoRequestPriceCalculationsService,
     ILogger <TalentVideoRequestController> logger)
 {
     TalentService        = talentService;
     SearchService        = searchService;
     VideoRequestService  = videoRequestService;
     TalentBalanceService = talentBalanceService;
     VideoRequestPriceCalculationsService = videoRequestPriceCalculationsService;
     _logger = logger;
 }
コード例 #4
0
 public VideoRequestService(IVideoRequestRepository repository,
                            IUnitOfWork unitOfWork,
                            ITalentBalanceService talentBalanceService,
                            ICustomerBalanceService customerBalanceService,
                            IVideoRequestPriceCalculationsService videoRequestPriceCalculationsService,
                            IFirebaseRegistrationTokenService firebaseRegistrationTokenService,
                            IPaymoService paymoService,
                            IInvoiceService invoiceService)
     : base(repository, unitOfWork)
 {
     TalentBalanceService   = talentBalanceService;
     CustomerBalanceService = customerBalanceService;
     VideoRequestPriceCalculationsService = videoRequestPriceCalculationsService;
     FirebaseRegistrationTokenService     = firebaseRegistrationTokenService;
     PaymoService   = paymoService;
     InvoiceService = invoiceService;
 }