Exemplo n.º 1
0
 public ACAlunoService(IACAlunoRepository iACAlunoRepository,
                       IGEEnderecoRepository iGEEnderecoRepository,
                       IGETelefoneRepository iGETelefoneRepository
                       )
 {
     _iACAlunoRepository    = iACAlunoRepository;
     _iGEEnderecoRepository = iGEEnderecoRepository;
     _iGETelefoneRepository = iGETelefoneRepository;
 }
Exemplo n.º 2
0
 public ACResponsavelService(IACResponsavelRepository iACResponsavelRepository, IGEEnderecoRepository iGEEnderecoRepository)
 {
     _iACResponsavelRepository = iACResponsavelRepository;
     _iGEEnderecoRepository    = iGEEnderecoRepository;
 }
Exemplo n.º 3
0
 public GEEnderecoService(IGEEnderecoRepository iGEEnderecoRepository)
 {
     _iGEEnderecoRepository = iGEEnderecoRepository;
 }
Exemplo n.º 4
0
 public void SetUp()
 {
     _iACResponsavelRepository = A.Fake <IACResponsavelRepository>();
     _iGEEnderecoRepository    = A.Fake <IGEEnderecoRepository>();
     _iACResponsavelService    = new ACResponsavelService(_iACResponsavelRepository, _iGEEnderecoRepository);
 }