Пример #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 VideoController(
     IVideoRequestService videoRequestService,
     IFileManagement fileManagement,
     ILogger <VideoController> logger)
 {
     VideoRequestService = videoRequestService;
     FileManagement      = fileManagement;
     _logger             = logger;
 }
Пример #3
0
 public HangfireService(
     IVideoRequestService videoRequestService,
     IFileManagement fileManagement,
     IAttachmentService attachmentService)
 {
     VideoRequestService = videoRequestService;
     FileManagement      = fileManagement;
     AttachmentService   = attachmentService;
 }
Пример #4
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;
 }
Пример #5
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;
 }
Пример #6
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;
 }
Пример #7
0
 public TalentController(
     ITalentService talentService,
     IAttachmentService attachmentService,
     IVideoRequestService videoRequestService,
     IVideoRequestStatisticsService videoRequestStatisticsService,
     ITalentVisibilityService talentVisibilityService,
     ILogger <TalentController> logger)
 {
     TalentService                 = talentService;
     AttachmentService             = attachmentService;
     VideoRequestService           = videoRequestService;
     VideoRequestStatisticsService = videoRequestStatisticsService;
     TalentVisibilityService       = talentVisibilityService;
     _logger = logger;
 }
Пример #8
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;
 }
Пример #9
0
 public PaymoController(IInvoiceService invoiceService, IVideoRequestService videoRequestService)
 {
     _invoiceService      = invoiceService;
     _videoRequestService = videoRequestService;
 }
Пример #10
0
 public VideoRequestStatisticsService(IVideoRequestRepository repository,
                                      IUnitOfWork unitOfWork,
                                      IVideoRequestService videoRequestService)
 {
     VideoRequestService = videoRequestService;
 }