public AuthorizeIdentitiesController(IIdentityService identityService,
                                      IACLObjectService aclObjectService, ISpisSubscriptionService SpisSubscriptionService)
 {
     _identityService         = identityService;
     _aclObjectService        = aclObjectService;
     _SpisSubscriptionService = SpisSubscriptionService;
 }
 /// <summary>
 ///
 /// </summary>
 /// <param name="dbContext"></param>
 /// <param name="logContext"></param>
 public PublishedRtzMessageService(StmDbContext dbContext,
                                   LogDbContext logContext) : base(dbContext)
 {
     _aclService          = new ACLObjectService(dbContext);
     _subscriberService   = new VisSubscriptionService(dbContext);
     _logEventService     = new LogEventService(logContext);
     _notificationService = new NotificationService(dbContext, logContext);
 }
 public AuthorizeIdentitiesController(IIdentityService identityService,
                                      IACLObjectService aclObjectService, IVisSubscriptionService subscriptionService,
                                      IConnectionInformationService connectionInformationService)
 {
     _identityService              = identityService;
     _aclObjectService             = aclObjectService;
     _subscriptionService          = subscriptionService;
     _connectionInformationService = connectionInformationService;
 }
Beispiel #4
0
 public SubscriptionController(IPublishedPcmMessageService publishedMessageService, ISpisSubscriptionService SpisSubscriptionService, IMessageTypeService messageTypeService,
                               IIdentityService identityService, IACLObjectService aCLObjectService)
 {
     _publishedMessageService = publishedMessageService;
     _SpisSubscriptionService = SpisSubscriptionService;
     _messageTypeService      = messageTypeService;
     _identityService         = identityService;
     _aCLObjectService        = aCLObjectService;
 }
 public PublishMessageController(IPublishedPcmMessageService publishedMessageService,
                                 IMessageTypeService messageTypeService,
                                 IACLObjectService aclObjectService,
                                 ISpisSubscriptionService spisSubscriptionService)
 {
     _publishedMessageService = publishedMessageService;
     _messageTypeService      = messageTypeService;
     _aclObjectService        = aclObjectService;
     _spisSubscriptionService = spisSubscriptionService;
 }
Beispiel #6
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 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"];
 }
 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;
 }