public WikipediaParsingService(
     IDownloadingService downloadingService,
     IPageParsingService pageParsingService,
     IDatasourceManagementService datasourceManagementService)
 {
     this.downloadingService          = downloadingService;
     this.pageParsingService          = pageParsingService;
     this.datasourceManagementService = datasourceManagementService;
 }
 public HomeController(
     ICommentService CommentService,
     IDownloadingService DownloadingService,
     IMaterialService MaterialService,
     IRatingService RatingService,
     IUserService UserService) : base(
         CommentService,
         DownloadingService,
         MaterialService,
         RatingService,
         UserService)
 {
 }
 public BaseController(
     ICommentService commentService,
     IDownloadingService downloadingService,
     IMaterialService materialService,
     IRatingService ratingService,
     IUserService userService)
 {
     CommentService     = commentService;
     DownloadingService = downloadingService;
     MaterialService    = materialService;
     RatingService      = ratingService;
     UserService        = userService;
 }
 public AccountController(
     ICommentService CommentService,
     IDownloadingService DownloadingService,
     IMaterialService MaterialService,
     IRatingService RatingService,
     IUserService UserService,
     IOptions <EmailSettings> settings) : base(
         CommentService,
         DownloadingService,
         MaterialService,
         RatingService,
         UserService)
 {
     EmailSettings = settings.Value;
 }