public GetMessageController(IUploadedMessageService uploadedMessageService, IMessageTypeService messageTypeService,
                             IConnectionInformationService connectionInformationService)
 {
     _uploadedMessageService       = uploadedMessageService;
     _messageTypeService           = messageTypeService;
     _connectionInformationService = connectionInformationService;
 }
 public AuthorizeIdentitiesController(IIdentityService identityService,
                                      IACLObjectService aclObjectService, IVisSubscriptionService subscriptionService,
                                      IConnectionInformationService connectionInformationService)
 {
     _identityService              = identityService;
     _aclObjectService             = aclObjectService;
     _subscriptionService          = subscriptionService;
     _connectionInformationService = connectionInformationService;
 }
Пример #3
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;
 }
 public PublishMessageController(IPublishedRtzMessageService publishedMessageService,
                                 IMessageTypeService messageTypeService,
                                 IACLObjectService aclObjectService,
                                 IVisSubscriptionService visSubscriptionService,
                                 IConnectionInformationService connectionInformationService)
 {
     _publishedMessageService      = publishedMessageService;
     _messageTypeService           = messageTypeService;
     _aclObjectService             = aclObjectService;
     _visSubscriptionService       = visSubscriptionService;
     _connectionInformationService = connectionInformationService;
 }
 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;
 }
Пример #6
0
 public FindServicesController(ISccPrivateService sscService, IConnectionInformationService connectionInformationService)
 {
     _sscService = sscService;
     _connectionInformationService = connectionInformationService;
 }
 public NotificationController(INotificationService notificationService, IConnectionInformationService connectionInformationService)
 {
     _notificationService          = notificationService;
     _connectionInformationService = connectionInformationService;
 }