public WantedPeopleController(
     IBountyAdminService bountyAdminService,
     IWantedPeopleService wantedPeopleService)
     : base(bountyAdminService)
 {
     this.wantedPeopleService = wantedPeopleService;
 }
Ejemplo n.º 2
0
 public WantedPeopleController(
     IArticleService articleService,
     IWantedPeopleService peopleService,
     UserManager <User> userManager,
     IBountyAdminService bountyAdminService)
     : base(bountyAdminService)
 {
     this.peopleService  = peopleService;
     this.userManager    = userManager;
     this.articleService = articleService;
 }
Ejemplo n.º 3
0
 public WantedPeopleController(IWantedPeopleService peopleService)
 {
     this.peopleService = peopleService;
 }