Ejemplo n.º 1
0
 public WorkContext(
     IHttpContextAccessor httpContextAccessor,
     IWebCacheService webCacheService)
 {
     this.httpContextAccessor = httpContextAccessor;
     this.webCacheService     = webCacheService;
 }
 public NotificationsSubscriber(
     INotificationService notificationService,
     IConfiguration configuration,
     IWebCacheService webCacheService)
 {
     this.notificationService = notificationService;
     this.configuration       = configuration;
     this.webCacheService     = webCacheService;
 }
Ejemplo n.º 3
0
 public UsersController(
     IMessageExceptionFinder messageExceptionFinder,
     IUserService userService,
     IWorkContext workContext,
     IWebCacheService webCacheService,
     IMapper mapper) : base(messageExceptionFinder)
 {
     this.userService     = userService;
     this.workContext     = workContext;
     this.webCacheService = webCacheService;
     this.mapper          = mapper;
 }