コード例 #1
0
 public GetMessageController(IUploadedMessageService uploadedMessageService, IMessageTypeService messageTypeService,
                             IConnectionInformationService connectionInformationService)
 {
     _uploadedMessageService       = uploadedMessageService;
     _messageTypeService           = messageTypeService;
     _connectionInformationService = connectionInformationService;
 }
コード例 #2
0
 public SubscriptionController(IPublishedPcmMessageService publishedMessageService, ISpisSubscriptionService SpisSubscriptionService, IMessageTypeService messageTypeService,
                               IIdentityService identityService, IACLObjectService aCLObjectService)
 {
     _publishedMessageService = publishedMessageService;
     _SpisSubscriptionService = SpisSubscriptionService;
     _messageTypeService      = messageTypeService;
     _identityService         = identityService;
     _aCLObjectService        = aCLObjectService;
 }
コード例 #3
0
 public AreaController(StmDbContext context, IUploadedMessageService uploadedMessageService,
                       IIdentityService identityService, IMessageTypeService messageTypeService,
                       INotificationService notificationService)
 {
     _context = context;
     _uploadedMessageService = uploadedMessageService;
     _identityService        = identityService;
     _messageTypeService     = messageTypeService;
     _notificationService    = notificationService;
 }
コード例 #4
0
 public PublishMessageController(IPublishedPcmMessageService publishedMessageService,
                                 IMessageTypeService messageTypeService,
                                 IACLObjectService aclObjectService,
                                 ISpisSubscriptionService spisSubscriptionService)
 {
     _publishedMessageService = publishedMessageService;
     _messageTypeService      = messageTypeService;
     _aclObjectService        = aclObjectService;
     _spisSubscriptionService = spisSubscriptionService;
 }
コード例 #5
0
 public SubscriptionController(IPublishedRtzMessageService publishedMessageService, IVisSubscriptionService subscriptionService, IMessageTypeService messageTypeService,
                               IIdentityService identityService, IACLObjectService aCLObjectService,
                               IConnectionInformationService connectionInformationService)
 {
     _publishedMessageService      = publishedMessageService;
     _subscriptionService          = subscriptionService;
     _messageTypeService           = messageTypeService;
     _identityService              = identityService;
     _aCLObjectService             = aCLObjectService;
     _connectionInformationService = connectionInformationService;
 }
コード例 #6
0
 public PublishMessageController(IPublishedRtzMessageService publishedMessageService,
                                 IMessageTypeService messageTypeService,
                                 IACLObjectService aclObjectService,
                                 IVisSubscriptionService visSubscriptionService,
                                 IConnectionInformationService connectionInformationService)
 {
     _publishedMessageService      = publishedMessageService;
     _messageTypeService           = messageTypeService;
     _aclObjectService             = aclObjectService;
     _visSubscriptionService       = visSubscriptionService;
     _connectionInformationService = connectionInformationService;
 }
コード例 #7
0
 public EventConsumer(
     ILoggerService logger,
     IIndex <IPayloadStorageProviderService> payloadStorageProviderResolver,
     IMessageInfoRepository messageInfoRepository,
     IGroupTransactionInfoRepository groupTransactionRepository,
     IMessageTypeService priorityService)
 {
     _logger = logger;
     _payloadStorageProviderService = payloadStorageProviderResolver.Resolve(typeof(T).Name);
     _messageInfoRepository         = messageInfoRepository;
     _groupTransactionRepository    = groupTransactionRepository;
     _priorityService = priorityService;
 }
コード例 #8
0
 public TextMessageController(StmDbContext context,
                              IPublishedRtzMessageService publishedMessageService,
                              IACLObjectService aclObjectService,
                              IIdentityService identityService,
                              IVisSubscriptionService subscriptionService,
                              IMessageTypeService messageTypeService,
                              IUploadedMessageService uploadedMessageService,
                              INotificationService notificationService)
 {
     _context = context;
     _publishedMessageService  = publishedMessageService;
     _aclObjectService         = aclObjectService;
     _identityService          = identityService;
     _subscriptionService      = subscriptionService;
     _messageTypeService       = messageTypeService;
     _uploadedMessageService   = uploadedMessageService;
     _notificationService      = notificationService;
     InstanceContext.ServiceId = ConfigurationManager.AppSettings["MyIdentity"];
 }
コード例 #9
0
 public VoyagePlanController(StmDbContext context,
                             IPublishedRtzMessageService publishedMessageService,
                             IACLObjectService aclObjectService,
                             IIdentityService identityService,
                             IVisSubscriptionService subscriptionService,
                             IMessageTypeService messageTypeService,
                             IUploadedMessageService uploadedMessageService,
                             INotificationService notificationService,
                             ISccPrivateService sscService,
                             IConnectionInformationService connectionInformationService)
 {
     _context = context;
     _publishedMessageService = publishedMessageService;
     _aclObjectService        = aclObjectService;
     _identityService         = identityService;
     _subscriptionService     = subscriptionService;
     _messageTypeService      = messageTypeService;
     _uploadedMessageService  = uploadedMessageService;
     _notificationService     = notificationService;
     _sscService = sscService;
     _connectionInformationService = connectionInformationService;
 }
コード例 #10
0
 public MessageTypeController(IMessageTypeService messageTypeService, IMapper mapper)
 {
     this._messageTypeService = messageTypeService;
     this._mapper             = mapper;
 }
コード例 #11
0
 public GetMessageController(IUploadedMessageService uploadedMessageService, IMessageTypeService messageTypeService)
 {
     _uploadedMessageService = uploadedMessageService;
     _messageTypeService     = messageTypeService;
 }
コード例 #12
0
 public NotificationSubscriptionController(INotificationSubscriptionService service, IMapper mapper, IMessageTypeService messageTypeService)
 {
     this._service            = service;
     this._mapper             = mapper;
     this._messageTypeService = messageTypeService;
 }
コード例 #13
0
 public MessageTypeTest()
 {
     messageTypeService = new MessageTypeService();
 }