public CustomerInfoViewModel(
     IRepository <SalesOrder> repository,
     IServiceBundle serviceBundle,
     ISalesOrderRepository salesOrderRepository,
     ICustomerInfoRepository customerInfoRepositoy,
     ISyncService syncService
     ) : base(serviceBundle)
 {
     _repository             = repository;
     _salesOrderRepository   = salesOrderRepository;
     _customerInfoRepository = customerInfoRepositoy;
 }
示例#2
0
 public HomeController(ILogger <HomeController> logger, ICustomerInfoRepository customerInfoRepository,
                       ITariffRepository tariffRepository, ITelegramRepository telegram,
                       ICourseStartRepository courseStartRepository,
                       IDayInfoRepository dayInfoRepository)
 {
     _logger = logger;
     _customerInfoRepository = customerInfoRepository;
     _tariffRepository       = tariffRepository;
     _telegram = telegram;
     _courseStartRepository = courseStartRepository;
     _dayInfoRepository     = dayInfoRepository;
 }
示例#3
0
 public ApiController(ICustomerInfoRepository customerInfoRepository,
                      ITariffBenefitRepository tariffBenefitRepository,
                      ITariffBenefitOrderedRepository tariffBenefitOrderedRepository,
                      IDayInfoRepository dayInfoRepository,
                      IDayInfoBlockRepository dayInfoBlockRepository,
                      IDayInfoSequenceItemRepository dayInfoSequenceItemRepository)
 {
     _customerInfoRepository         = customerInfoRepository;
     _tariffBenefitRepository        = tariffBenefitRepository;
     _tariffBenefitOrderedRepository = tariffBenefitOrderedRepository;
     _dayInfoRepository             = dayInfoRepository;
     _dayInfoBlockRepository        = dayInfoBlockRepository;
     _dayInfoSequenceItemRepository = dayInfoSequenceItemRepository;
 }
 public SyncService(
     ICrescoClient crescoClient,
     ICloudService cloudService,
     ILogService logService,
     INetworkService networkService,
     IRepository <InboundShipment> inboundShipmentRepository,
     IRepository <InboundTransfer> inboundTransferRepository,
     IRepository <SalesOrderItem> salesOrderItemRepository,
     IRepository <SalesOrder> salesOrderRepository,
     IRepository <SalesOrderDeliveryString> salesOrderDeliveryRepository,
     IRepository <CustomerInfoUpdateString> customerInfoDeliveryRepository,
     IRepository <SalesOrderUpdateNoticeString> salesOrderUpdateRepository,
     ISalesOrderDeliveryNotificationRepository salesOrderDeliveryNotificationRepository,
     ISalesOrderUpdateNotificationRepository salesOrderUpdateNotificationRepository,
     ICustomerInfoRepository customerInfoRepository,
     IRepository <Branch> branchRepository,
     IRepository <Lot> lotRepository
     )
 {
     _crescoClient                             = crescoClient;
     _cloudService                             = cloudService;
     _logService                               = logService;
     _networkService                           = networkService;
     _salesOrderItemRepository                 = salesOrderItemRepository;
     _inboundShipmentRepository                = inboundShipmentRepository;
     _inboundTransferRepository                = inboundTransferRepository;
     _salesOrderRepository                     = salesOrderRepository;
     _salesOrderDeliveryRepository             = salesOrderDeliveryRepository;
     _salesOrderUpdateRepository               = salesOrderUpdateRepository;
     _customerInfoDeliveryRepository           = customerInfoDeliveryRepository;
     _salesOrderDeliveryNotificationRepository = salesOrderDeliveryNotificationRepository;
     _salesOrderUpateNotificationRepository    = salesOrderUpdateNotificationRepository;
     _customerInfoRepository                   = customerInfoRepository;
     _branchRepository                         = branchRepository;
     _lotRepository                            = lotRepository;
 }
示例#5
0
 public CustomerInfoService(ICustomerInfoRepository repository)
 {
     _repository = repository;
 }
示例#6
0
 public CartController(IOrderRepository orderRepository,
                       ICustomerInfoRepository infoRepository)
 {
     this.orderRepository = orderRepository;
     this.infoRepository  = infoRepository;
 }
示例#7
0
 public CustomerInformationService(ICustomerInfoRepository customerInfoRepository)
 {
     _customerInfoRepository = customerInfoRepository;
 }
 public CustomerManagementServices(ICustomerInfoRepository customerInfoRepository)
 {
     _customerInfoRepository = customerInfoRepository;
 }
示例#9
0
 public CustomerInfoLogic(ICustomerInfoRepository customerInfoRepo)
 {
     _Repo = customerInfoRepo;
 }
 public CustomerInfoController(ICustomerInfoRepository customerInfoRepository)
 {
     this.customerInfoRepository = customerInfoRepository;
 }
 public HomeController(ICategoryRepository categoryRepository
                       , IProductRepository productRepository, IPictureRepository pictureRepository,
                       IOrderRepository orderRepository, IOrderItemsRepository orderItemRepository,
                       IUserRepository userRepository, IProductVariationRepository prdVariationRepo, ICustomerInfoRepository customerRepository)
 {
     this._categoryRepository  = categoryRepository;
     this._productRepository   = productRepository;
     this._pictureRepository   = pictureRepository;
     this._orderRepository     = orderRepository;
     this._orderItemRepository = orderItemRepository;
     this._userRepository      = userRepository;
     this._prdVariationRepo    = prdVariationRepo;
     this._customerRepository  = customerRepository;
 }
 //构造函数
 public CustomerInfoDomainService(ICustomerInfoRepository customerInfoRepository, IBusinessmanRepository businessmanRepository)
 {
     _customerInfoRepository = customerInfoRepository;
     _businessmanRepository  = businessmanRepository;
 }