Exemple #1
0
 public PersonService(
     IWritableRepository <int, DomainPerson> personRepository,
     IAgeGroupService ageGroupService
     )
 {
     this.personRepository = personRepository;
     this.ageGroupService  = ageGroupService;
 }
Exemple #2
0
 public AgeGroupController(IAgeGroupService service)
     : base(service)
 {
     _service = service;
 }