public BeneficiarioService(IBeneficiarioRepository beneficiarioRepository,
                            IBeneficiarioEmailRepository beneficiarioEmailRepository,
                            IBeneficiarioTelefoneRepository beneficiarioTelefoneRepository,
                            IBeneficiarioEnderecoRepository beneficiarioEnderecoRepository
                            )
 {
     _beneficiarioRepository         = beneficiarioRepository;
     _beneficiarioEmailRepository    = beneficiarioEmailRepository;
     _beneficiarioTelefoneRepository = beneficiarioTelefoneRepository;
     _beneficiarioEnderecoRepository = beneficiarioEnderecoRepository;
 }
 public BeneficiarioApplicationService(IBeneficiarioRepository beneficiarioRepository,
                                       IBeneficiarioEnderecoRepository beneficiarioEnderecoRepository,
                                       IBeneficiarioTelefoneRepository beneficiarioTelefoneRepository,
                                       IBeneficiarioEmailRepository beneficiarioEmailRepository,
                                       IBeneficiarioService beneficiarioService, IUnitOfWork uow) : base(uow)
 {
     _beneficiarioRepository         = beneficiarioRepository;
     _beneficiarioEnderecoRepository = beneficiarioEnderecoRepository;
     _beneficiarioTelefoneRepository = beneficiarioTelefoneRepository;
     _beneficiarioEmailRepository    = beneficiarioEmailRepository;
     _beneficiarioService            = beneficiarioService;
 }