コード例 #1
0
 public ReactController(
     IEntityReactionsManager <EntityReaction> entityReactionManager,
     IEntityReactionsStore <EntityReaction> entityReactionsStore,
     ISimpleReactionsStore simpleReactionsStore,
     IAuthorizationService authorizationService,
     IClientIpAddress clientIpAddress)
 {
     _simpleReactionsStore  = simpleReactionsStore;
     _entityReactionManager = entityReactionManager;
     _entityReactionsStore  = entityReactionsStore;
     _clientIpAddress       = clientIpAddress;
     _authorizationService  = authorizationService;
 }
コード例 #2
0
 public ReactionListViewComponent(
     ISimpleReactionsStore simpleReactionsStore)
 {
     _simpleReactionsStore = simpleReactionsStore;
 }