public ArticleController(ISimpleAccountManager simpleAccount, IArticleService articleService, IHelperServices helperServices)
     : base(simpleAccount, articleService)
 {
     _simpleAccount = simpleAccount;
     _articleService = articleService;
     _helperServices = helperServices;
 }
 public AccountController(ISimpleAccountManager simpleAccountManager)
 {
     _simpleAccountManager = simpleAccountManager;
 }
 public ControllerHelper(ISimpleAccountManager simpleAccount,IArticleService articleService)
 {
     _simpleAccount = simpleAccount;
     _articleService = articleService;
 }