示例#1
0
 public OrderController(IOfferService offerService, IStatusLogService statusLogService, IOrderStatusService orderStatusService, ITransactionService transactionService, IGameService gameService, IOrderService orderService, IUserProfileService userProfileService)
 {
     _orderStatusService = orderStatusService;
     _offerService       = offerService;
     _gameService        = gameService;
     _transactionService = transactionService;
     _orderService       = orderService;
     _userProfileService = userProfileService;
     _statusLogService   = statusLogService;
 }
示例#2
0
 public SupplierService(IUnitOfWork unitOfWork, IService <Address> addressService, IService <AgentSupplier> agentSupplierService, IService <vwSupplier> vwSupplierService, IService <ImportPermit> importPermitService, IStatusLogService statusLogService,
                        IService <SupplierProduct> supplierProductService) : base(unitOfWork)
 {
     _addressService         = addressService;
     _agentSupplierService   = agentSupplierService;
     _vwSupplierService      = vwSupplierService;
     _importPermitService    = importPermitService;
     _statusLogService       = statusLogService;
     _supplierProductService = supplierProductService;
 }
示例#3
0
 public ServiceChecker(
     ILogger <ServiceChecker> logger,
     IEnumerable <IStatusProvider> businessServices,
     IStatusLogService storeService,
     int delay = 5 * 1000)
 {
     _logger           = logger;
     _businessServices = businessServices;
     _storeService     = storeService;
     _delay            = delay;
 }
示例#4
0
 public AgentService(IUnitOfWork unitOfWork, IService <Address> addressService, IService <UserAgent> userAgentService, IUserService userService, IService <UserRole> userRoleService,
                     IService <AgentSupplier> agentSupplierService, IService <vwAgent> vwAgentService, IStatusLogService statusLogService, IDocumentService documentService) : base(unitOfWork)
 {
     _addressService       = addressService;
     _userAgentService     = userAgentService;
     _userService          = userService;
     _userRoleService      = userRoleService;
     _agentSupplierService = agentSupplierService;
     _vwAgentService       = vwAgentService;
     _statusLogService     = statusLogService;
     _documentService      = documentService;
 }
示例#5
0
 public LibraryLogic(IBookService bookService, IHolderService holdersService, INotificationService notificationService, IKeyWordService keyWordService, IStatusLogService statusLogService, IUserService userService, IRequestClient <IMailSend> requestClient, IImageLogic imageLogic, IRaitingBooksService raitingBooksService)
 {
     _bookService         = bookService;
     _holdersService      = holdersService;
     _notificationService = notificationService;
     _keyWordService      = keyWordService;
     _statusLogService    = statusLogService;
     _userService         = userService;
     _requestClient       = requestClient;
     _imageLogic          = imageLogic;
     _raitingBooksService = raitingBooksService;
 }
示例#6
0
 public StatusController(IStatusLogService storeService)
 {
     _storeService = storeService;
 }
示例#7
0
 public SupplierController(ISupplierService supplierService, IStatusLogService statusLogService) : base(supplierService)
 {
     _supplierService  = supplierService;
     _statusLogService = statusLogService;
 }
示例#8
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="agentService"></param>
 public AgentController(IAgentService agentService, IStatusLogService statusLogService) : base(agentService)
 {
     _service          = agentService;
     _statusLogService = statusLogService;
 }