public PopulateDemoDB(INationalDoNotCallRepository nationalDoNotCallRepository,
                       IInternalDoNotCallRepository internalDoNotCallRepository,
                       IWhiteListRepository whiteListRepository,
                       IPersonRepository personRepository)
 {
     _nationalDoNotCallRepository = nationalDoNotCallRepository;
     _internalDoNotCallRepository = internalDoNotCallRepository;
     _whiteListRepository         = whiteListRepository;
     _personRepository            = personRepository;
 }
Exemplo n.º 2
0
 public ValidatePhoneNumberService(IInternalDoNotCallRepository internalRepo, INationalDoNotCallRepository nationalRepo)
 {
     _internalRepo = internalRepo;
     _nationalRepo = nationalRepo;
 }