public AdminController( IArticleService articleService, IMapper mapper, IUserIdentity userIdentity) { this.articleService = articleService.CheckIfNull(nameof(articleService)); this.mapper = mapper.CheckIfNull(nameof(mapper)); this.userIdentity = userIdentity.CheckIfNull(nameof(userIdentity)); }