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