コード例 #1
0
 public PeopleController(IPersonRepository repository, UserDbContext context, UserManager <IdentityUser> userManager, IPersonManagementRepository personManagementRepository)
 {
     this.userManager = userManager;
     this.repository  = repository;
     this.context     = context;
     this.personManagementRepository = personManagementRepository;
 }
コード例 #2
0
 public PeopleManagementService(IPersonManagementRepository repo)
 {
     repository = repo;
 }
コード例 #3
0
 public PersonManagementService(IPersonManagementRepository personRepository)
 {
     _personRepository = personRepository;
 }
コード例 #4
0
 public PersonManagementController(IPersonManagementRepository personManagementRepository)
 {
     this.personManagementRepository = personManagementRepository;
 }