Exemple #1
0
 // dep injection
 public PersonContactViewModelsController(IPersonRepo pRep, IContactInfoRepo cRep)
 {
     _personRepo  = pRep;
     _contactRepo = cRep;
 }
Exemple #2
0
 public ContactInfoController(IContactInfoRepo <ContactInfo> contactInfoRepo)
 {
     _contactInfoRepo = contactInfoRepo;
 }