コード例 #1
0
 public MatchService(IMatchStore matchStore, IHubService hubService, IUserManagerService userManagerService, INavigationService navigationService)
 {
     this.matchStore         = matchStore;
     this.hubService         = hubService;
     this.userManagerService = userManagerService;
     this.navigationService  = navigationService;
 }
コード例 #2
0
 public DatabaseSpaceUsageMetricsHandler(
     IHubService hubService,
     ILogger <DatabaseSpaceUsageMetricsHandler> logger)
 {
     _hubService = hubService;
     _logger     = logger;
 }
コード例 #3
0
 public MeterService(IMeterRepository meterRepository, IModemRepository modemRepository,
                     IMeterModelService meterModelService,
                     IRateTypeService rateTypeService, ISmcService smcService, IMapper mapper,
                     IServicesUtils servicesUtils, IMeterKeyService meterKeyService, ISmcForwarderService smcForwarderService,
                     ISmcUnregisteredService smcUnregisteredService,
                     IMeterForwarderService meterForwarderService, ITicketService ticketService,
                     ISmcModelService smcModelService, IMeterUnregisteredService meterUnregisteredService,
                     IHubService hubService)
 {
     _meterRepository          = meterRepository;
     _modemRepository          = modemRepository;
     _meterModelService        = meterModelService;
     _rateTypeService          = rateTypeService;
     _smcService               = smcService;
     _mapper                   = mapper;
     _servicesUtils            = servicesUtils;
     _meterKeyService          = meterKeyService;
     _smcForwarderService      = smcForwarderService;
     _meterForwarderService    = meterForwarderService;
     _smcModelService          = smcModelService;
     _hubService               = hubService;
     _smcUnregisteredService   = smcUnregisteredService;
     _meterUnregisteredService = meterUnregisteredService;
     _ticketService            = ticketService;
 }
コード例 #4
0
 public TransportOrderPerformanceController(ITransportOrderService transportOrderService, ITransporterService transporterService, ITransportOrderDetailService transportOrderDetailService, IHubService hubService, IAdminUnitService adminUnitService)
 {
     _transportOrderService = transportOrderService;
     _transportOrderDetailService = transportOrderDetailService;
     _hubService = hubService;
     _adminUnitService = adminUnitService;
 }
コード例 #5
0
 public LossesAndAdjustmentsController(IUserProfileService userProfileService,
                                         ICommodityService commodityService,
                                         IStoreService storeService,
                                         IProgramService programService,
                                         IHubService hubService,
                                         IUnitService unitService,
                                         IAdjustmentReasonService adjustmentReasonService,
                                         IAdjustmentService adjustmentService,
                                         ITransactionService transactionService,
                                         IProjectCodeService projectCodeService,
                                         IShippingInstructionService shippingInstructionService)
     : base(userProfileService)
 {
     _userProfileService = userProfileService;
     _commodityService = commodityService;
     _storeService = storeService;
     _programService = programService;
     _hubService = hubService;
     _unitService = unitService;
     _adjustmentReasonService = adjustmentReasonService;
     _adjustmentService = adjustmentService;
     _TransactionService = transactionService;
     _projectCodeService = projectCodeService;
     _shippingInstructionService = shippingInstructionService;
 }
 public HateoasGrapesController(
     IGrapeService grapeService,
     IHubService hubService)
 {
     _grapeService = grapeService;
     _hubService   = hubService;
 }
コード例 #7
0
ファイル: ReportsController.cs プロジェクト: ndrmc/cats-hub
        public ReportsController(IDispatchService dispatchService,
                                 IReceiveService receiveService,
                                 IUserProfileService userProfileService,
                                 IHubService hubService,
                                 ITransactionService transactionService,
                                 ICommodityService commodityService,
                                 ICommodityTypeService commodityTypeService,
                                 IProgramService programService,
                                 IAdminUnitService adminUnitService,
                                 IDispatchAllocationService dispatchAllocationService,
                                 ICommoditySourceService commoditySourceService

                                 )
        {
            this._dispatchService      = dispatchService;
            this._receiveService       = receiveService;
            this._userProfileService   = userProfileService;
            this._hubService           = hubService;
            this._transactionService   = transactionService;
            _commodityService          = commodityService;
            _commodityTypeService      = commodityTypeService;
            _programService            = programService;
            _adminUnitService          = adminUnitService;
            _dispatchAllocationService = dispatchAllocationService;
            _commoditySourceService    = commoditySourceService;
        }
コード例 #8
0
 public OperationRejectedHandler(
     IHubService hubService,
     ILogger <OperationRejectedHandler> logger)
 {
     _hubService = hubService;
     _logger     = logger;
 }
コード例 #9
0
 public DispatchAllocationController(IDispatchAllocationService dispatchAllocationService,
                                     IUserProfileService userProfileService,
                                     IOtherDispatchAllocationService otherDispatchAllocationService,
                                     IShippingInstructionService shippingInstructionService,
                                     IProjectCodeService projectCodeService,
                                     ITransporterService transporterService,
                                     ICommonService commonService,
                                     IAdminUnitService adminUnitService,
                                     IFDPService fdpService,
                                     IHubService hubService,
                                      ICommodityTypeService commodityTypeService)
     : base(userProfileService)
 {
     this._dispatchAllocationService = dispatchAllocationService;
     this._userProfileService = userProfileService;
     this._otherDispatchAllocationService = otherDispatchAllocationService;
     this._projectCodeService = projectCodeService;
     this._shippingInstructionService = shippingInstructionService;
     this._transporterService = transporterService;
     this._adminUnitService = adminUnitService;
     this._fdpService = fdpService;
     this._commonService = commonService;
     this._hubService = hubService;
     this._commodityTypeService = commodityTypeService;
 }
コード例 #10
0
 public TransportOrderPerformanceController(ITransportOrderService transportOrderService, ITransporterService transporterService, ITransportOrderDetailService transportOrderDetailService, IHubService hubService, IAdminUnitService adminUnitService)
 {
     _transportOrderService       = transportOrderService;
     _transportOrderDetailService = transportOrderDetailService;
     _hubService       = hubService;
     _adminUnitService = adminUnitService;
 }
コード例 #11
0
 public ServerMemoryUsageMetricsHandler(
     IHubService hubService,
     ILogger <ServerMemoryUsageMetricsHandler> logger)
 {
     _hubService = hubService;
     _logger     = logger;
 }
コード例 #12
0
 public ProjectAllocationController(IRegionalRequestService reliefRequistionService
                                    , IFDPService fdpService
                                    , IAdminUnitService adminUnitService,
                                    IProgramService programService,
                                    ICommodityService commodityService,
                                    IRegionalRequestDetailService reliefRequisitionDetailService,
                                    IProjectCodeAllocationService projectCodeAllocationService,
                                    IProjectCodeService projectCodeService,
                                    IShippingInstructionService shippingInstructionService,
                                    IHubService hubService,
                                    IHubAllocationService hubAllocationService,
                                    ILog log,
                                    IReliefRequisitionService requisitionService, ITransactionService transactionservice, ILedgerService ledgerService)
 {
     this._regionalRequestService         = reliefRequistionService;
     this._adminUnitService               = adminUnitService;
     this._commodityService               = commodityService;
     this._fdpService                     = fdpService;
     this._programService                 = programService;
     this._reliefRequisitionDetailService = reliefRequisitionDetailService;
     this._projectCodeAllocationService   = projectCodeAllocationService;
     this._projectCodeService             = projectCodeService;
     this._shippingInstructionService     = shippingInstructionService;
     this._hubService                     = hubService;
     this._hubAllocationService           = hubAllocationService;
     this._requisitionService             = requisitionService;
     this._transactionService             = transactionservice;
     this._ledgerService                  = ledgerService;
     this._log = log;
 }
コード例 #13
0
ファイル: ReportsController.cs プロジェクト: FishAbe/cats
 public ReportsController(IDispatchService dispatchService,
      IReceiveService receiveService,
      IUserProfileService userProfileService,
      IHubService hubService,
      ITransactionService transactionService,
      ICommodityService commodityService,
      ICommodityTypeService commodityTypeService,
      IProgramService programService,
      IAdminUnitService adminUnitService,
      IDispatchAllocationService dispatchAllocationService,
      ICommoditySourceService commoditySourceService
      
      )
 {
     this._dispatchService = dispatchService;
      this._receiveService = receiveService;
      this._userProfileService = userProfileService;
      this._hubService = hubService;
      this._transactionService = transactionService;
      _commodityService = commodityService;
      _commodityTypeService = commodityTypeService;
      _programService = programService;
      _adminUnitService = adminUnitService;
      _dispatchAllocationService = dispatchAllocationService;
      _commoditySourceService = commoditySourceService;
 }
コード例 #14
0
ファイル: DispatchController.cs プロジェクト: robela/cats
 public DispatchController(IDispatchAllocationService dispatchAllocationService, IDispatchService dispatchService,
     IUserProfileService userProfileService, IOtherDispatchAllocationService otherDispatchAllocationService,
     IDispatchDetailService dispatchDetailService, IUnitService unitService, ICommodityTypeService commodityTypeService,
     IProgramService programService, ITransporterService transporterService, IPeriodService periodService, 
     ICommodityService commodityService, ITransactionService transactionService, IStoreService storeService,
     IAdminUnitService adminUnitService, IHubService hubService, IFDPService fdpService,
     IProjectCodeService projectCodeService, IShippingInstructionService shippingInstructionService, 
     ISMSGatewayService smsGatewayService, IContactService contactService, ISMSService smsService)
     : base(userProfileService)
 {
     _dispatchAllocationService = dispatchAllocationService;
     _dispatchService = dispatchService;
     _userProfileService = userProfileService;
     _otherDispatchAllocationService = otherDispatchAllocationService;
     _dispatchDetailService = dispatchDetailService;
     _unitService = unitService;
     _commodityTypeService = commodityTypeService;
     _programService = programService;
     _transporterService = transporterService;
     _periodService = periodService;
     _commodityService = commodityService;
     _transactionService = transactionService;
     _storeService = storeService;
     _adminUnitService = adminUnitService;
     _hubService = hubService;
     _fdpService = fdpService;
     _projectCodeService = projectCodeService;
     _shippingInstructionService = shippingInstructionService;
     _smsGatewayService = smsGatewayService;
     _contactService = contactService;
     _smsService = smsService;
 }
コード例 #15
0
 public DispatchController(IDispatchAllocationService dispatchAllocationService, IDispatchService dispatchService,
                           IUserProfileService userProfileService, IOtherDispatchAllocationService otherDispatchAllocationService,
                           IDispatchDetailService dispatchDetailService, IUnitService unitService, ICommodityTypeService commodityTypeService,
                           IProgramService programService, ITransporterService transporterService, IPeriodService periodService,
                           ICommodityService commodityService, ITransactionService transactionService, IStoreService storeService,
                           IAdminUnitService adminUnitService, IHubService hubService, IFDPService fdpService,
                           IProjectCodeService projectCodeService, IShippingInstructionService shippingInstructionService)
 {
     _dispatchAllocationService      = dispatchAllocationService;
     _dispatchService                = dispatchService;
     _userProfileService             = userProfileService;
     _otherDispatchAllocationService = otherDispatchAllocationService;
     _dispatchDetailService          = dispatchDetailService;
     _unitService                = unitService;
     _commodityTypeService       = commodityTypeService;
     _programService             = programService;
     _transporterService         = transporterService;
     _periodService              = periodService;
     _commodityService           = commodityService;
     _transactionService         = transactionService;
     _storeService               = storeService;
     _adminUnitService           = adminUnitService;
     _hubService                 = hubService;
     _fdpService                 = fdpService;
     _projectCodeService         = projectCodeService;
     _shippingInstructionService = shippingInstructionService;
 }
コード例 #16
0
 public PriceQuotationController(ITransportBidPlanService transportBidPlanServiceParam
                                     , IAdminUnitService adminUnitServiceParam
                                     , IProgramService programServiceParam
                                     , ITransportBidPlanDetailService transportBidPlanDetailServiceParam
                                     , IHubService hubServiceParam
                                     , ITransportBidQuotationService bidQuotationServiceParam
                                     , ITransporterService transporterServiceParam
                                     , IBidService bidServiceParam
                                     , ITransportBidQuotationService transportBidQuotationService
                                     , IBidWinnerService bidWinnerService
                                     , IBusinessProcessService businessProcessService
                                     , IApplicationSettingService applicationSettingService
                                     , ITransportBidQuotationHeaderService transportBidQuotationHeaderService
                                     , ITransportOrderService transportOrderService  )
 {
     this._transportBidPlanService = transportBidPlanServiceParam;
     this._adminUnitService = adminUnitServiceParam;
     this._programService = programServiceParam;
     this._transportBidPlanDetailService = transportBidPlanDetailServiceParam;
     this._hubService = hubServiceParam;
     this._bidQuotationService = bidQuotationServiceParam;
     this._bidService = bidServiceParam;
     this._transporterService = transporterServiceParam;
     this._transportBidQuotationService = transportBidQuotationService;
     this._bidWinnerService = bidWinnerService;
     this._BusinessProcessService = businessProcessService;
     this._transportBidQuotationHeaderService = transportBidQuotationHeaderService;
     this._ApplicationSettingService = applicationSettingService;
     _transportOrderService = transportOrderService;
 }
コード例 #17
0
ファイル: UsersController.cs プロジェクト: robi-github/cats
 // private readonly IUserAccountService _userAccountService;
 public UsersController(IUserAccountService service, IHubService hubService, IAdminUnitService adminUnitService)
 {
     _userService = service;
     _hubService = hubService;
     _adminUnitService = adminUnitService;
     //_userAccountService = userAccountService;
 }
コード例 #18
0
ファイル: ReceiveController.cs プロジェクト: FishAbe/cats
 public ReceiveController(IReceiveService receiveService,IGiftCertificateService giftCertificateService,
                          IReceiptAllocationService receiptAllocationService,IUserProfileService userProfileService,
                          ICommodityTypeService commodityTypeService ,IReceiveDetailService receiveDetailService,
                          ICommodityService commodityService,IStoreService storeService,ITransactionService transactionService,
                          IUnitService unitService,IShippingInstructionService shippingInstructionService,IHubService hubService,
                          ICommodityGradeService commodityGradeService,IProgramService programService,ITransporterService transporterService,
                          ICommoditySourceService commoditySourceService, IDonorService donorService)
     : base(userProfileService)
 {
     _receiveService = receiveService;
     _giftCertificateService = giftCertificateService;
     _receiptAllocationService = receiptAllocationService;
     _userProfileService = userProfileService;
     _commodityTypeService = commodityTypeService;
     _receiveDetailService = receiveDetailService;
     _commodityService = commodityService;
     _storeService = storeService;
     _transactionService = transactionService;
     _unitService = unitService;
     _shippingInstructionService = shippingInstructionService;
     _hubService = hubService;
     _commodityGradeService = commodityGradeService;
     _programService = programService;
     _transporterService = transporterService;
     _commoditySourceService=commoditySourceService;
     _donorService = donorService;
 }
コード例 #19
0
 public DispatchAllocationController(IDispatchAllocationService dispatchAllocationService,
                                     IUserProfileService userProfileService,
                                     IOtherDispatchAllocationService otherDispatchAllocationService,
                                     IShippingInstructionService shippingInstructionService,
                                     IProjectCodeService projectCodeService,
                                     ITransporterService transporterService,
                                     ICommonService commonService,
                                     IAdminUnitService adminUnitService,
                                     IFDPService fdpService,
                                     IHubService hubService,
                                     ICommodityTypeService commodityTypeService)
     : base(userProfileService)
 {
     this._dispatchAllocationService      = dispatchAllocationService;
     this._userProfileService             = userProfileService;
     this._otherDispatchAllocationService = otherDispatchAllocationService;
     this._projectCodeService             = projectCodeService;
     this._shippingInstructionService     = shippingInstructionService;
     this._transporterService             = transporterService;
     this._adminUnitService     = adminUnitService;
     this._fdpService           = fdpService;
     this._commonService        = commonService;
     this._hubService           = hubService;
     this._commodityTypeService = commodityTypeService;
 }
コード例 #20
0
 public ProjectAllocationController(IRegionalRequestService reliefRequistionService
    , IFDPService fdpService
     , IAdminUnitService adminUnitService,
     IProgramService programService,
     ICommodityService commodityService,
     IRegionalRequestDetailService reliefRequisitionDetailService,
     IProjectCodeAllocationService projectCodeAllocationService, 
     IProjectCodeService projectCodeService,
     IShippingInstructionService shippingInstructionService, 
     IHubService hubService, 
     IHubAllocationService hubAllocationService,
     ILog log,
     IReliefRequisitionService requisitionService, ITransactionService transactionservice, ILedgerService ledgerService)
 {
     this._regionalRequestService = reliefRequistionService;
     this._adminUnitService = adminUnitService;
     this._commodityService = commodityService;
     this._fdpService = fdpService;
     this._programService = programService;
     this._reliefRequisitionDetailService = reliefRequisitionDetailService;
     this._projectCodeAllocationService = projectCodeAllocationService;
     this._projectCodeService = projectCodeService;
     this._shippingInstructionService = shippingInstructionService;
     this._hubService = hubService;
     this._hubAllocationService = hubAllocationService;
     this._requisitionService = requisitionService;
     this._transactionService = transactionservice;
        this._ledgerService = ledgerService;
     this._log = log;
 }
コード例 #21
0
 public PriceQuotationController(ITransportBidPlanService transportBidPlanServiceParam
                                 , IAdminUnitService adminUnitServiceParam
                                 , IProgramService programServiceParam
                                 , ITransportBidPlanDetailService transportBidPlanDetailServiceParam
                                 , IHubService hubServiceParam
                                 , ITransportBidQuotationService bidQuotationServiceParam
                                 , ITransporterService transporterServiceParam
                                 , IBidService bidServiceParam
                                 , ITransportBidQuotationService transportBidQuotationService
                                 , IBidWinnerService bidWinnerService
                                 , IBusinessProcessService businessProcessService
                                 , IApplicationSettingService applicationSettingService
                                 , ITransportBidQuotationHeaderService transportBidQuotationHeaderService
                                 , ITransportOrderService transportOrderService)
 {
     this._transportBidPlanService       = transportBidPlanServiceParam;
     this._adminUnitService              = adminUnitServiceParam;
     this._programService                = programServiceParam;
     this._transportBidPlanDetailService = transportBidPlanDetailServiceParam;
     this._hubService                         = hubServiceParam;
     this._bidQuotationService                = bidQuotationServiceParam;
     this._bidService                         = bidServiceParam;
     this._transporterService                 = transporterServiceParam;
     this._transportBidQuotationService       = transportBidQuotationService;
     this._bidWinnerService                   = bidWinnerService;
     this._BusinessProcessService             = businessProcessService;
     this._transportBidQuotationHeaderService = transportBidQuotationHeaderService;
     this._ApplicationSettingService          = applicationSettingService;
     _transportOrderService                   = transportOrderService;
 }
コード例 #22
0
        public ConversationViewModel(IConversationService conversationService, IHubService hubService)
        {
            _conversationService = conversationService;
            _hubService          = hubService;
            Messages             = new ObservableCollection <object>();
            TypingParticipants   = new ObservableCollection <Author>();

            LoadMoreCommand = new Command <object>(execute: (o) =>
            {
                Task.Run(async() => await LoadMessages(clear: false, skip: _skip)).Wait();
            },
                                                   canExecute: (o) =>
            {
                return(_canLoadMore);
            });

            SendMessageCommand = new Command(execute: async(args) => {
                var message = (string)args;
                await SendMessage(message);
            },
                                             canExecute: (args) =>
            {
                return(true);
            });
        }
コード例 #23
0
 public GenericRejectedEventHandler(ICorrelationContextAccessor contextAccessor,
                                    IOperationsService operationsService, IHubService hubService)
 {
     _contextAccessor   = contextAccessor;
     _operationsService = operationsService;
     _hubService        = hubService;
 }
コード例 #24
0
 public HandlerBase(IHandler handler,
                    IHubService hubService, Func <T, Task> handleAsync)
 {
     _handler     = handler;
     _hubService  = hubService;
     _handleAsync = handleAsync;
 }
コード例 #25
0
 public LossesAndAdjustmentsController(IUserProfileService userProfileService,
                                       ICommodityService commodityService,
                                       IStoreService storeService,
                                       IProgramService programService,
                                       IHubService hubService,
                                       IUnitService unitService,
                                       IAdjustmentReasonService adjustmentReasonService,
                                       IAdjustmentService adjustmentService,
                                       ITransactionService transactionService,
                                       IProjectCodeService projectCodeService,
                                       IShippingInstructionService shippingInstructionService)
     : base(userProfileService)
 {
     _userProfileService         = userProfileService;
     _commodityService           = commodityService;
     _storeService               = storeService;
     _programService             = programService;
     _hubService                 = hubService;
     _unitService                = unitService;
     _adjustmentReasonService    = adjustmentReasonService;
     _adjustmentService          = adjustmentService;
     _TransactionService         = transactionService;
     _projectCodeService         = projectCodeService;
     _shippingInstructionService = shippingInstructionService;
 }
 public ChatHub(IHubService hubservice, IDistributedCache distributedCache, IUserRepository userRepository, IApplicationRepository applicationRepository)
 {
     this._hubService            = hubservice;
     this._distributedCache      = distributedCache;
     this._userRepository        = userRepository;
     this._applicationRepository = applicationRepository;
 }
コード例 #27
0
 public UserSessionMetricsHandler(
     IHubService hubService,
     ILogger <UserSessionMetricsHandler> logger)
 {
     _hubService = hubService;
     _logger     = logger;
 }
コード例 #28
0
 public AdminController(IUserProfileService userProfileService, IUserRoleService userRoleService, IRoleService roleService, IUserHubService userHubService, IHubService hubService)
 {
     _userProfileService = userProfileService;
     _userRoleService = userRoleService;
     _roleService = roleService;
     _userHubService = userHubService;
     _hubService = hubService;
 }
コード例 #29
0
 public StockStatusController(IUserProfileService userProfileService,
                              ICommodityService commodityService, IHubService hubService)
     : base(userProfileService)
 {
     _userProfileService = userProfileService;
     _commodityService   = commodityService;
     _hubService         = hubService;
 }
コード例 #30
0
ファイル: AdminController.cs プロジェクト: ndrmc/cats-hub
 public AdminController(IUserProfileService userProfileService, IUserRoleService userRoleService, IRoleService roleService, IUserHubService userHubService, IHubService hubService)
 {
     _userProfileService = userProfileService;
     _userRoleService    = userRoleService;
     _roleService        = roleService;
     _userHubService     = userHubService;
     _hubService         = hubService;
 }
コード例 #31
0
ファイル: StockStatusController.cs プロジェクト: robela/cats
 public StockStatusController(IUserProfileService userProfileService,
      ICommodityService commodityService, IHubService hubService)
     : base(userProfileService)
 {
     _userProfileService = userProfileService;
      _commodityService = commodityService;
      _hubService = hubService;
 }
コード例 #32
0
 /// <summary>
 /// Controller for hub endpoints relative to moderators management
 /// </summary>
 /// <param name="authenticationService">Authentication service</param>
 /// <param name="hubService">Hub service</param>
 /// <param name="moderatorService">Moderator service</param>
 /// <param name="moduleService">Module service</param>
 public ModeratorsController(IAuthenticationService authenticationService, IModeratorService moderatorService,
                             IModuleService moduleService, IHubService hubService)
 {
     _authenticationService = authenticationService;
     _hubService            = hubService;
     _moderatorService      = moderatorService;
     _moduleService         = moduleService;
 }
コード例 #33
0
ファイル: GamePageVM.cs プロジェクト: Pjatac/Backgammon
 public GamePageVM(IMessageService messageService, INavigationService navigationService, IGameService gameService, IHubService hubService)
 {
     _hubService        = hubService;
     _gameService       = gameService;
     _messageService    = messageService;
     _navigationService = navigationService;
     InitCommand();
 }
コード例 #34
0
 public GameEventSourceAddedHandler(IHubService hubService, ILogger <GameEventSourceAddedHandler> logger
                                    , IGameEventSourceRepository gameEventSourceRepository
                                    )
 {
     _gameEventSourceRepository = gameEventSourceRepository;
     _hubService = hubService;
     _logger     = logger;
 }
コード例 #35
0
ファイル: ChatPageVM.cs プロジェクト: Pjatac/Backgammon
 public ChatPageVM(IMessageService messageService, INavigationService navigationService, IHubService hubService)
 {
     _messageService    = messageService;
     _navigationService = navigationService;
     _hubService        = hubService;
     Messages           = new ObservableCollection <string>();
     InitCommand();
 }
コード例 #36
0
ファイル: UsersController.cs プロジェクト: FishAbe/cats
 // private readonly IUserAccountService _userAccountService;
 public UsersController(IUserAccountService service, IHubService hubService, IAdminUnitService adminUnitService, IProgramService programService, Cats.Services.Hub.IUserHubService userHubService)
 {
     _userService = service;
     _hubService = hubService;
     _adminUnitService = adminUnitService;
     _programService = programService;
     _userHubServcie = userHubService;
     //_userAccountService = userAccountService;
 }
コード例 #37
0
 public PublishingJob(Env env, IDocumentStore store, IDataService dataService, IHubService hubService, IGovService govService, ISmtpClient smtpClient)
 {
     this.env         = env;
     this.store       = store;
     this.dataService = dataService;
     this.hubService  = hubService;
     this.govService  = govService;
     this.smtpClient  = smtpClient;
 }
コード例 #38
0
        // private readonly IUserAccountService _userAccountService;

        public UsersController(IUserAccountService service, IHubService hubService, IAdminUnitService adminUnitService, IProgramService programService, Cats.Services.Hub.IUserHubService userHubService)
        {
            _userService      = service;
            _hubService       = hubService;
            _adminUnitService = adminUnitService;
            _programService   = programService;
            _userHubServcie   = userHubService;
            //_userAccountService = userAccountService;
        }
コード例 #39
0
 public WorkerService(
     IHubService hubService,
     ISecurityTokenFactory securityTokenFactory,
     ILogger <WorkerService> logger)
 {
     _hubService           = hubService;
     _securityTokenFactory = securityTokenFactory;
     _logger = logger;
 }
コード例 #40
0
        public ServerManager(IControlTour controlTour, IHubService hubService, IDalService dalService)
        {
            this.controlTour = controlTour;
            this.dalService  = dalService;
            this.hubService  = hubService;

            controlTour.onPlaneMoved += Airport_planeMoved;
            controlTour.onError      += Airport_onError;
        }
コード例 #41
0
 public GenericCommandHandler(ICorrelationContextAccessor contextAccessor,
                              IMessagePropertiesAccessor messagePropertiesAccessor,
                              IOperationsService operationsService, IHubService hubService)
 {
     _contextAccessor           = contextAccessor;
     _messagePropertiesAccessor = messagePropertiesAccessor;
     _operationsService         = operationsService;
     _hubService = hubService;
 }
コード例 #42
0
 public TicketService(ITicketRepository ticketRepository,
                      ITicketCreateSender ticketCreateSender,
                      IHubService chatHubService)
     : base(ticketRepository)
 {
     _chatHubService     = chatHubService;
     _ticketCreateSender = ticketCreateSender;
     _ticketRepository   = ticketRepository;
 }
コード例 #43
0
        public SensorsViewModel(IHubService hubService)
        {
            _hubService = hubService;

            Hubs.Add(new TickTackHub() { Id = "8D3515FC-94AE-4A49-BBEA-2D8ABCC99967" });
            Hubs.Add(new TickTackHub() { Id = "012029F1-204E-4275-9F39-4FC3D4F46925" });

            SelectedHub = Hubs.First();
        }
コード例 #44
0
 public UserWarehouseController(IUserHubService userHubService, 
      IHubService hubService, 
      IUserProfileService userProfileService)
     : base(userProfileService)
 {
     this._userHubService = userHubService;
      this._hubService = hubService;
      this._userProfileService = userProfileService;
 }
コード例 #45
0
 public StackEventController(IStackEventService stackeventService, 
                             IUserProfileService userProfileService,
                             IHubService hubService,
                             IStackEventTypeService stackEventTypeService)
 {
     _stackEventService = stackeventService;
     _userProfileService = userProfileService;
     _hubService = hubService;
     _StackEventTypeService = stackEventTypeService;
 }
コード例 #46
0
 public TransportBidPlanController(ITransportBidPlanService transportBidPlanServiceParam
                                   , IAdminUnitService adminUnitServiceParam
                                   , IProgramService programServiceParam
                                   , ITransportBidPlanDetailService transportBidPlanDetailServiceParam
                                   , IHubService hubServiceParam)
 {
     this._transportBidPlanService = transportBidPlanServiceParam;
     this._adminUnitService = adminUnitServiceParam;
     this._programService = programServiceParam;
     this._transportBidPlanDetailService = transportBidPlanDetailServiceParam;
     this._hubService = hubServiceParam;
 }
コード例 #47
0
 public PromisedContributionController(IPromisedContributionService _PromisedContributionService,
     IUserAccountService _userAccountService,
     IDonorService _donorService,
     IHubService _hubService,
     ICommodityService _commodityService
     )
 {
     this.promisedContributionService = _PromisedContributionService;
         this.userAccountService = _userAccountService;
         this.donorService = _donorService;
         this.hubService = _hubService;
         this.commodityService = _commodityService;
 }
コード例 #48
0
 public HubAllocationController(
    IReliefRequisitionDetailService reliefRequisitionDetailService,
    IHubService hubService,
    IHubAllocationService hubAllocationService, 
    IReliefRequisitionService reliefRequisitionService, IUserAccountService userAccountService,
     ILog log)
 {
     this._hubService = hubService;
     this._reliefRequisitionDetailService = reliefRequisitionDetailService;
     this._hubAllocationService = hubAllocationService;
     this._reliefRequisitionService = reliefRequisitionService;
     this._log = log;
     _userAccountService = userAccountService;
 }
コード例 #49
0
 public FDPSIAllocationController(
      IReliefRequisitionService requisitionService
     , ILedgerService ledgerService
     , IHubAllocationService hubAllocationService, IHubService hubService
     ,ISIPCAllocationService allocationService
     ,ITransactionService transactionService
     )
 {
     this._requisitionService = requisitionService;
         this._ledgerService = ledgerService;
         this._hubAllocationService = hubAllocationService;
     this._hubService = hubService;
         this._allocationService = allocationService;
         this._transactionService = transactionService;
 }
コード例 #50
0
ファイル: WoredaHubController.cs プロジェクト: robela/cats
 public WoredaHubController(IWoredaHubService woredaHubService, IWoredaHubLinkService woredaHubLinkService, 
     IHRDService hrdService, IRegionalPSNPPlanService regionalPSNPPlanService, IAdminUnitService adminUnitService,
     IHubService hubService, IHRDDetailService hrdDetailService, IRegionalPSNPPlanDetailService regionalPSNPPlanDetailService,
     IApplicationSettingService applicationSettingService, IUserAccountService userAccountService, IPlanService planService)
 {
     _woredaHubService = woredaHubService;
     _woredaHubLinkService = woredaHubLinkService;
     _hrdService = hrdService;
     _regionalPSNPPlanService = regionalPSNPPlanService;
     _adminUnitService = adminUnitService;
     _hubService = hubService;
     _hrdDetailService = hrdDetailService;
     _regionalPSNPPlanDetailService = regionalPSNPPlanDetailService;
     _applicationSettingService = applicationSettingService;
     _planService = planService;
 }
コード例 #51
0
 public LogisticsStockStatusController(
     IUnitOfWork unitOfWork,
     IUserDashboardPreferenceService userDashboardPreferenceService,
     IDashboardWidgetService dashboardWidgetservice,
     IUserAccountService userService,
     IHubService hubService,
     IStockStatusService stockStatusService, IAdminUnitService adminUnitService)
 {
     _unitOfWork = unitOfWork;
     _userDashboardPreferenceService = userDashboardPreferenceService;
     _dashboardWidgetService = dashboardWidgetservice;
     _userService = userService;
     _hubService = hubService;
     _stockStatusService = stockStatusService;
     _adminUnitService = adminUnitService;
 }
コード例 #52
0
 //
 // GET: /InternalMovement/
 public InternalMovementController(IUserProfileService userProfileService, IInternalMovementService internalMovementService, 
     ITransactionService transactionService, IStoreService storeService, IProjectCodeService projectCodeService,
     IShippingInstructionService shippingInstructionService, ICommodityService commodityService, IHubService hubService,
     IProgramService programService, IUnitService unitService, IDetailService detailService)
 {
     _userProfileService = userProfileService;
     _internalMovementService = internalMovementService;
     _transactionService = transactionService;
     _storeService = storeService;
     _projectCodeService = projectCodeService;
     _shippingInstructionService = shippingInstructionService;
     _commodityService = commodityService;
     _hubService = hubService;
     _programService = programService;
     _unitService = unitService;
     _detailService = detailService;
 }
コード例 #53
0
ファイル: RFQController.cs プロジェクト: robi-github/cats
 public RFQController(ITransportBidPlanService transportBidPlanServiceParam
                                     , IAdminUnitService adminUnitServiceParam
                                     , IProgramService programServiceParam
                                     , ITransportBidPlanDetailService transportBidPlanDetailServiceParam
                                     ,IHubService hubServiceParam
                                     , ITransportBidQuotationService bidQuotationServiceParam
                                     , ITransporterService transporterServiceParam
                                     , IBidService bidServiceParam)
 {
     this._transportBidPlanService = transportBidPlanServiceParam;
         this._adminUnitService = adminUnitServiceParam;
         this._programService = programServiceParam;
         this._transportBidPlanDetailService = transportBidPlanDetailServiceParam;
         this._hubService = hubServiceParam;
         this._bidQuotationService = bidQuotationServiceParam;
         this._bidService = bidServiceParam;
         this._transporterService = transporterServiceParam;
 }
コード例 #54
0
        //
        // GET: /StockManagement/
        public StockManagementController(IUserProfileService userProfileService, IProgramService programService,
            ICommodityTypeService commodityTypeService, ICommoditySourceService commoditySourceService, 
            IProjectCodeService projectCodeService, IShippingInstructionService shippingInstructionService, 
            IReceiveService receiveService, IStoreService storeService, IHubService hubService,
            IAdminUnitService adminUnitService, IDispatchAllocationService dispatchAllocationService, IDonorService donorService)
        {
            _userProfileService = userProfileService;
            _programService = programService;
            _commodityTypeService = commodityTypeService;
            _commoditySourceService = commoditySourceService;
            _projectCodeService = projectCodeService;
            _shippingInstructionService = shippingInstructionService;
            _receiveService = receiveService;

            _storeService = storeService;
            _hubService = hubService;
            _adminUnitService = adminUnitService;
            _dispatchAllocationService = dispatchAllocationService;
            _donorService = donorService;
        }
コード例 #55
0
 public ReceiptAllocationController(IReceiptAllocationService receiptAllocationService,
     IUserProfileService userProfileService,
     ICommoditySourceService commoditySourceService,
     IGiftCertificateService giftCertificateService,
     ICommodityService commodityService,
     IDonorService donorService,
     IGiftCertificateDetailService giftCertificateDetailService,
     IHubService hubService,
     IProgramService programService,
     ICommodityTypeService commodityTypeService)
 {
     this._receiptAllocationService = receiptAllocationService;
     this._userProfileService = userProfileService;
     this._commoditySourceService = commoditySourceService;
     this._giftCertificateService = giftCertificateService;
     this._commodityService = commodityService;
     this._donorService = donorService;
     this._giftCertificateDetailService = giftCertificateDetailService;
     this._hubService = hubService;
     this._programService = programService;
     this._commodityTypeService = commodityTypeService;
 }
コード例 #56
0
ファイル: BidController.cs プロジェクト: robela/cats
 public BidController(IBidService bidService, IBidDetailService bidDetailService,
                      IAdminUnitService adminUnitService,
                      IStatusService statusService,
                      ITransportBidPlanService transportBidPlanService,
                      ITransportBidPlanDetailService transportBidPlanDetailService,
                      IApplicationSettingService applicationSettingService,IUserAccountService userAccountService,
                      ITransportBidQuotationService transportBidQuotationService, IBidWinnerService bidWinnerService,
                     ITransporterService transporterService, IHubService hubService,IWorkflowStatusService workflowStatusService)
 {
     _bidService = bidService;
     _bidDetailService = bidDetailService;
     _adminUnitService = adminUnitService;
     _statusService = statusService;
     _transportBidPlanService = transportBidPlanService;
     _transportBidPlanDetailService = transportBidPlanDetailService;
     _applicationSettingService = applicationSettingService;
     _userAccountService = userAccountService;
     _transportBidQuotationService = transportBidQuotationService;
     _bidWinnerService = bidWinnerService;
     _transporterService = transporterService;
     _hubService = hubService;
     _workflowStatusService = workflowStatusService;
 }
コード例 #57
0
 public ReceiveNewController(IUserProfileService userProfileService,
     IReceiptAllocationService receiptAllocationService,
     IReceiveService receiveService,
     ICommodityService commodityService,
     IUnitService unitService,
     IStoreService storeService,
     ITransactionService transactionService,
     IDonorService donorService,
     IHubService hub,
     ITransporterService transporterService)
     : base(userProfileService)
 {
     _userProfileService = userProfileService;
     _receiptAllocationService = receiptAllocationService;
     _receiveService = receiveService;
     _commodityService = commodityService;
     _unitService = unitService;
     _storeService = storeService;
     _transactionService = transactionService;
     _donorService = donorService;
     _hub = hub;
     _transporterService = transporterService;
 }
コード例 #58
0
ファイル: StoreController.cs プロジェクト: robi-github/cats
 public StoreController(IStoreService storeService, IHubService hubService)
 {
     _storeService = storeService;
     _hubService = hubService;
 }
コード例 #59
0
ファイル: HomeController.cs プロジェクト: robi-github/cats
 public HomeController(IUserProfileService userProfileService, IAdminUnitService adminUnitService, IHubService hubService)
     : base(userProfileService)
 {
     _adminUnitService = adminUnitService;
     _hubService = hubService;
 }
コード例 #60
0
 public HubController(IHubOwnerService hubOwnerService, IHubService hubService)
 {
     _hubOwnerService = hubOwnerService;
     _hubService = hubService;
 }