Beispiel #1
0
 public ACAlunoService(IACAlunoRepository iACAlunoRepository,
                       IGEEnderecoRepository iGEEnderecoRepository,
                       IGETelefoneRepository iGETelefoneRepository
                       )
 {
     _iACAlunoRepository    = iACAlunoRepository;
     _iGEEnderecoRepository = iGEEnderecoRepository;
     _iGETelefoneRepository = iGETelefoneRepository;
 }
Beispiel #2
0
 public void ACAlunoServiceSetUp()
 {
     faker = new Faker();
     fakeACAlunoRepository = A.Fake <IACAlunoRepository>();
     _iACAlunoService      = new ACAlunoService(fakeACAlunoRepository, fakeGEEnderecoRepository, fakeGETelefoneRepository);
 }