Esempio n. 1
0
 public PeopleController(ITagRepository tagRepository, IPersonRepository personRepository, IPersonTagRepository personTagRepository)
 {
     this.tagRepository       = tagRepository;
     this.personRepository    = personRepository;
     this.personTagRepository = personTagRepository;
 }
Esempio n. 2
0
 public TagService(ITagRepository tagRepository, IPersonTagRepository personTagRepository)
 {
     this.tagRepository       = tagRepository;
     this.personTagRepository = personTagRepository;
 }