public BalanceController(IServiceProvider serviceProvider, IOrganizationCustomer customer, ICustomerBalanceService balanceService) : base(serviceProvider) { _customer = customer; _balanceService = balanceService; }
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; }
public VideoRequestPriceCalculationsService( ITalentBalanceService talentBalanceService, ICustomerBalanceService customerBalanceService) { TalentBalanceService = talentBalanceService; CustomerBalanceService = customerBalanceService; }
public CustomerController( ICustomerService customerService, IAttachmentService attachmentService, ICustomerBalanceService customerBalanceService, ILogger <CustomerController> logger) { CustomerService = customerService; AttachmentService = attachmentService; CustomerBalanceService = customerBalanceService; _logger = logger; }
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; }