Beispiel #1
0
 public ContactController(IContactInventoryEFRepository repository)
 {
     _repository = repository;
 }
Beispiel #2
0
 public ContactController()
 {
     _repository = new ContactInventoryRepository(new Repository.Entities.ContactInventoryContext());
 }