Ejemplo n.º 1
0
 public ClientReaderService(IClientRepository clientRepository, IClientRelationshipRepository clientRelationshipRepository, IEncounterRepository encounterRepository, IPersonRepository personRepository, IPSmartStoreRepository pSmartStoreRepository)
 {
     _clientRepository             = clientRepository;
     _clientRelationshipRepository = clientRelationshipRepository;
     _encounterRepository          = encounterRepository;
     _personRepository             = personRepository;
     _pSmartStoreRepository        = pSmartStoreRepository;
 }
Ejemplo n.º 2
0
 public RegistryService(IClientRepository clientRepository, IClientIdentifierRepository clientIdentifierRepository, IPersonRepository personRepository, IClientRelationshipRepository clientRelationshipRepository, IEncounterRepository encounterRepository, IClientStateRepository clientStateRepository, IPSmartStoreRepository pSmartStoreRepository)
 {
     _clientRepository             = clientRepository;
     _clientIdentifierRepository   = clientIdentifierRepository;
     _personRepository             = personRepository;
     _clientRelationshipRepository = clientRelationshipRepository;
     _encounterRepository          = encounterRepository;
     _clientStateRepository        = clientStateRepository;
     _pSmartStoreRepository        = pSmartStoreRepository;
 }
 public void SetUp()
 {
     _clientRepository             = new ClientRepository(_liveSetting);
     _clientIdentifierRepository   = new ClientIdentifierRepository(_liveSetting);
     _personRepository             = new PersonRepository(_liveSetting);
     _clientRelationshipRepository = new ClientRelationshipRepository(_liveSetting);
     _encounterRepository          = new EncounterRepository(_liveSetting);
     _clientStateRepository        = new ClientStateRepository(_liveSetting);
     _pSmartStoreRepository        = new PSmartStoreRepository(_liveSetting);
     _registryService = new RegistryService(_clientRepository, _clientIdentifierRepository, _personRepository, _clientRelationshipRepository, _encounterRepository, _clientStateRepository, _pSmartStoreRepository);
 }
Ejemplo n.º 4
0
 public PSmartStoreService(IPSmartStoreRepository pSmartStoreRepository)
 {
     _pSmartStoreRepository = pSmartStoreRepository;
 }