public UserService(DataContext db, ILogger <UserService> logger, IReactionsService reactionsService) { this.db = db; this.logger = logger; this.reactionsService = reactionsService; }
public ReactionsController(IReactionsService reactionsService, IMapper mapper) { _reactionsService = reactionsService; _mapper = mapper; }
public ReactionsController(IReactionsService reactionsService) { this.reactionsService = reactionsService; }