示例#1
0
 public MissingPeopleController(
     IBountyAdminService bountyAdminService,
     IMissingPeopleService missingPeopleService)
     : base(bountyAdminService)
 {
     this.missingPeopleService = missingPeopleService;
 }
 public WantedPeopleController(
     IBountyAdminService bountyAdminService,
     IWantedPeopleService wantedPeopleService)
     : base(bountyAdminService)
 {
     this.wantedPeopleService = wantedPeopleService;
 }
 public MissingPeopleController(
     IArticleService articleService,
     IMissingPeopleService peopleService,
     IBountyAdminService bountyAdminService)
     : base(bountyAdminService)
 {
     this.peopleService  = peopleService;
     this.articleService = articleService;
 }
示例#4
0
 public WantedPeopleController(
     IArticleService articleService,
     IWantedPeopleService peopleService,
     UserManager <User> userManager,
     IBountyAdminService bountyAdminService)
     : base(bountyAdminService)
 {
     this.peopleService  = peopleService;
     this.userManager    = userManager;
     this.articleService = articleService;
 }
示例#5
0
 protected BasePeopleController(
     IBountyAdminService bountyAdminService)
 {
     this.bountyAdminService = bountyAdminService;
 }