Exemplo n.º 1
0
 /// <inheritdoc />
 public RemarksController(
     IRemarkServiceClient remarkService,
     IStorageServiceClient storageService)
 {
     _remarkService  = remarkService;
     _storageService = storageService;
 }
Exemplo n.º 2
0
 public RemarkActionCanceledHandler(IHandler handler,
                                    IRemarkSubscribersService subscribersService,
                                    IRemarkServiceClient remarkServiceClient)
 {
     _handler             = handler;
     _subscribersService  = subscribersService;
     _remarkServiceClient = remarkServiceClient;
 }
 public FavoriteRemarkDeletedHandler(IHandler handler,
                                     IRemarkSubscribersService subscribersService,
                                     IRemarkServiceClient remarkServiceClient)
 {
     _handler             = handler;
     _subscribersService  = subscribersService;
     _remarkServiceClient = remarkServiceClient;
 }
Exemplo n.º 4
0
 public PhotosFromRemarkRemovedHandler(IHandler handler,
                                       IRemarkRepository remarkRepository,
                                       IRemarkServiceClient remarkServiceClient,
                                       IRemarkCache cache)
 {
     _handler             = handler;
     _remarkRepository    = remarkRepository;
     _remarkServiceClient = remarkServiceClient;
     _cache = cache;
 }
Exemplo n.º 5
0
 public RemarkProcessedHandler(IHandler handler,
                               IRemarkRepository remarkRepository,
                               IRemarkServiceClient remarkServiceClient,
                               IRemarkCache cache)
 {
     _handler             = handler;
     _remarkRepository    = remarkRepository;
     _remarkServiceClient = remarkServiceClient;
     _cache = cache;
 }
 public NotificationService(IRemarkServiceClient remarkServiceClient,
                            IRemarkSubscribersService subscribersService,
                            IUserNotificationSettingsService userNotificationSettingsService,
                            IEmailMessageService emailService)
 {
     _remarkServiceClient             = remarkServiceClient;
     _subscribersService              = subscribersService;
     _userNotificationSettingsService = userNotificationSettingsService;
     _emailService = emailService;
 }
Exemplo n.º 7
0
 public RemarkResolvedHandler(IHandler handler,
                              IRemarkRepository remarkRepository,
                              IGroupRemarkRepository groupRemarkRepository,
                              IRemarkServiceClient remarkServiceClient,
                              IRemarkCache cache)
 {
     _handler               = handler;
     _remarkRepository      = remarkRepository;
     _groupRemarkRepository = groupRemarkRepository;
     _remarkServiceClient   = remarkServiceClient;
     _cache = cache;
 }
Exemplo n.º 8
0
 public RemarkCreatedHandler(IHandler handler,
                             IRemarkRepository remarkRepository,
                             IRemarkServiceClient remarkServiceClient,
                             IRemarkCache remarkCache,
                             IUserCache userCache)
 {
     _handler             = handler;
     _remarkRepository    = remarkRepository;
     _remarkServiceClient = remarkServiceClient;
     _remarkCache         = remarkCache;
     _userCache           = userCache;
 }
Exemplo n.º 9
0
 public RemarkProvider(IProviderClient provider,
                       IRemarkRepository remarkRepository,
                       IRemarkCategoryRepository categoryRepository,
                       IGroupRepository groupRepository,
                       ITagRepository tagRepository,
                       IReportRepository reportRepository,
                       IRemarkServiceClient serviceClient)
 {
     _provider           = provider;
     _remarkRepository   = remarkRepository;
     _categoryRepository = categoryRepository;
     _groupRepository    = groupRepository;
     _tagRepository      = tagRepository;
     _reportRepository   = reportRepository;
     _serviceClient      = serviceClient;
 }
 /// <inheritdoc />
 public RemarkCommentRemovedConsumer(IRemarkRepository remarkRepository,
                                     IRemarkServiceClient serviceClient)
 {
     _remarkRepository = remarkRepository;
     _serviceClient    = serviceClient;
 }
Exemplo n.º 11
0
 public DatabaseSeeder(IMongoDatabase database, IRemarkServiceClient remarkServiceClient)
 {
     _database            = database;
     _remarkServiceClient = remarkServiceClient;
 }
 /// <inheritdoc />
 public RemarkActivityAddedConsumer(IRemarkRepository remarkRepository,
                                    IRemarkServiceClient serviceClient)
 {
     _remarkRepository = remarkRepository;
     _serviceClient    = serviceClient;
 }
Exemplo n.º 13
0
 public HubService(IHubContext <CollectivelyHub> hubContext,
                   IRemarkServiceClient remarkServiceClient)
 {
     _hubContext          = hubContext;
     _remarkServiceClient = remarkServiceClient;
 }