コード例 #1
0
 public AccountNumberValidationTests()
 {
     _validation = new AccountNumberValidation();
 }
コード例 #2
0
 public PeopleController(IPersonRepository personRepository)
 {
     accountNumberValidation = new AccountNumberValidation();
     PersonRepository        = personRepository ?? throw new System.ArgumentNullException(nameof(personRepository));
 }
コード例 #3
0
 public EmployeesController(IEmployeeRepository repo)
 {
     _repo       = repo;
     _validation = new AccountNumberValidation();
 }