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