public EditorController(
     IArticleService articleService, 
     IPeerReviewService peerReviewService,
     AdministrationService adminService)
 {
     this.articleService = articleService;
     this.peerReviewService = peerReviewService;
     this.adminService = adminService;
 }
Example #2
0
 public AdminController(
     ApplicationRoleManager roleManager, 
     ApplicationUserManager userManager,
     AdministrationService adminService,
     IArticleService articleService,
     IContactService contactService,
     IPageService pageService,
     ParameterService paramService)
 {
     this.roleManager = roleManager;
     this.userManager = userManager;
     this.adminService = adminService;
     this.articleService = articleService;
     this.contactService = contactService;
     this.pageService = pageService;
     this.paramService = paramService;
 }