예제 #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 TalentsController(
     ITalentService talentService,
     ITalentSearchService talentSearchService,
     ICategoryService categoryService,
     IVideoRequestTypeService videoRequestTypeService,
     IVideoRequestService videoRequestService,
     ILogger <TalentsController> logger)
 {
     TalentService           = talentService;
     TalentSearchService     = talentSearchService;
     CategoryService         = categoryService;
     VideoRequestTypeService = videoRequestTypeService;
     VideoRequestService     = videoRequestService;
     _logger = logger;
 }