コード例 #1
0
 public MissingPeopleController(
     IBountyAdminService bountyAdminService,
     IMissingPeopleService missingPeopleService)
     : base(bountyAdminService)
 {
     this.missingPeopleService = missingPeopleService;
 }
コード例 #2
0
 public WantedPeopleController(
     IBountyAdminService bountyAdminService,
     IWantedPeopleService wantedPeopleService)
     : base(bountyAdminService)
 {
     this.wantedPeopleService = wantedPeopleService;
 }
コード例 #3
0
 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;
 }