Beispiel #1
0
 public ACResponsavelService(IACResponsavelRepository iACResponsavelRepository, IGEEnderecoRepository iGEEnderecoRepository)
 {
     _iACResponsavelRepository = iACResponsavelRepository;
     _iGEEnderecoRepository    = iGEEnderecoRepository;
 }
Beispiel #2
0
 public void SetUp()
 {
     _iACResponsavelRepository = A.Fake <IACResponsavelRepository>();
     _iGEEnderecoRepository    = A.Fake <IGEEnderecoRepository>();
     _iACResponsavelService    = new ACResponsavelService(_iACResponsavelRepository, _iGEEnderecoRepository);
 }