コード例 #1
0
ファイル: EmployeeController.cs プロジェクト: onxg/practice
 public EmployeeController(IHumanResourcesRepository _repository)
 {
     repository = _repository;
 }
コード例 #2
0
 public HumanResourcesController(IHumanResourcesRepository repository)
 {
     _repository = repository;
 }