public void PatientDemographicsRepoTestSetUp()
 {
     _repo    = new PatientDemographicsRepo();
     _fixture = new Fixture();
 }
Exemplo n.º 2
0
 public ServiceImplementation(IMapper mapper, IPatientDemographicsRepo repo)
 {
     _mapper = mapper;
     _repo   = repo;
 }