コード例 #1
0
 public PricePlanController(ICustomerIdService customerIdService, IPricePlanRepository pricePlanRepository, IProductTypeRepository productTypeRepository, IPricePlanViewModelFactory pricePlanViewModelFactory)
 {
     _customerIdService         = customerIdService;
     _pricePlanRepository       = pricePlanRepository;
     _productTypeRepository     = productTypeRepository;
     _pricePlanViewModelFactory = pricePlanViewModelFactory;
 }
コード例 #2
0
 public ProductCreateViewModelFactory(IProductTypeRepository productTypeRepository, IProductRepository productRepository, ICustomerIdService customerIdService, IPricePlanService pricePlanService)
 {
     _productTypeRepository = productTypeRepository;
     _productRepository     = productRepository;
     _customerIdService     = customerIdService;
     _pricePlanService      = pricePlanService;
 }
コード例 #3
0
 public ProductController(IProductRepository productRepository, ICustomerIdService customerIdService, IProductCreateViewModelFactory productCreateViewModelFactory, IUpdateViewModelProductFacotry updateViewModelProductFacotry, IPricePlanRepository pricePlanRepository, IPricePlanService pricePlanService)
 {
     _productRepository             = productRepository;
     _customerIdService             = customerIdService;
     _productCreateViewModelFactory = productCreateViewModelFactory;
     _updateViewModelProductFacotry = updateViewModelProductFacotry;
     _pricePlanService = pricePlanService;
 }
コード例 #4
0
 public SubCategoryController(IProductSubCategoryViewModelFactory productSubCategoryViewModelFactory,
                              ISubCategoryRepository subCategoryRepository,
                              ICustomerIdService customerIdService)
 {
     _productSubCategoryViewModelFactory = productSubCategoryViewModelFactory;
     _subCategoryRepository = subCategoryRepository;
     _customerIdService     = customerIdService;
 }
コード例 #5
0
 public CommonProxyClient(IHttpClientFactory httpFactory, IHttpContextAccessor httpContextAccessor, IConfiguration configuration,
                          IAuthorizationContextService authorizationContext, ICustomerIdService customerIdService)
 {
     _httpFactory          = httpFactory;
     _httpContextAccessor  = httpContextAccessor;
     _configuration        = configuration;
     _authorizationContext = authorizationContext;
     _customerIdService    = customerIdService;
 }
コード例 #6
0
 public IntegrationService(IRepository <Integration, SearchQueryIntegration> repository,
                           IEntityValidator <Integration, int?> validator,
                           IPublisher <IIntegrationDeleted> integrationDeletePublisher,
                           ICustomerIdService customerIdService)
 {
     _repository = repository;
     _validator  = validator;
     _integrationDeletePublisher = integrationDeletePublisher;
     _customerIdService          = customerIdService;
 }
コード例 #7
0
 public CategoryController(IProductCategoryViewModelFactory productCatagoryViewModelFactory,
                           ICategoryRepository categoryRepository,
                           IProductCategoryDetailViewModelFactory productCategoryDetailViewModelFactory,
                           ICustomerIdService customerIdService)
 {
     _productCatagoryViewModelFactory = productCatagoryViewModelFactory;
     _categoryRepository = categoryRepository;
     _productCategoryDetailViewModelFactory = productCategoryDetailViewModelFactory;
     _customerIdService = customerIdService;
 }
コード例 #8
0
 public CustomerIdHandler(IAuthorizationContextService authContext, ICustomerIdService customerIdService)
 {
     _customerIdService = customerIdService;
     _authContext       = authContext;
 }
 public ProductCatagoryViewModelFactory(ICategoryRepository categoryRepository, ICustomerIdService customerIdService)
 {
     _categoryRepository = categoryRepository;
     _customerIdService  = customerIdService;
 }
コード例 #10
0
 public DbContextFactory(IConfiguration configuration, ICustomerIdService customerIdService)
 {
     _configuration     = configuration;
     _customerIdService = customerIdService;
 }
コード例 #11
0
 public AddOnsController(ICustomerIdService customerIdService, IAddOnRepository addOnRepository, IProductTypeRepository productTypeRepository)
 {
     _customerIdService     = customerIdService;
     _addOnRepository       = addOnRepository;
     _productTypeRepository = productTypeRepository;
 }
コード例 #12
0
 public ConnectionStringProvider(ICustomerIdService customerIdService, IConfiguration configuration)
 {
     _customerIdService = customerIdService ?? throw new ArgumentNullException(nameof(customerIdService));
     _configuration     = configuration ?? throw new ArgumentNullException(nameof(configuration));
 }
コード例 #13
0
 public CustomerProfileController(ICustomerRepository customerRepository, ICustomerIdService customerIdService)
 {
     _customerRepository = customerRepository;
     _customerIdService  = customerIdService;
 }
コード例 #14
0
 public ProductTypesController(ICustomerIdService customerIdService, IProductTypeRepository productTypeRepository)
 {
     _customerIdService     = customerIdService;
     _productTypeRepository = productTypeRepository;
 }
コード例 #15
0
 public InMemorySticosWidgetDbContextFactory(ICustomerIdService customerIdService)
 {
     _customerIdService = customerIdService;
 }
 public PersonalLegacyContextFactory(IConfiguration configuration, ICustomerIdService customerIdService)
 {
     _configuration     = configuration ?? throw new ArgumentNullException(nameof(configuration));
     _customerIdService = customerIdService ?? throw new ArgumentNullException(nameof(customerIdService));
 }
コード例 #17
0
 public InMemoryPersonalLegacyContextFactory(ICustomerIdService customerIdService)
 {
     _customerIdService = customerIdService;
 }