Ejemplo n.º 1
0
 public PessoaFisicaService(IPessoaFisicaRepository repository,
                            IClienteService clienteService,
                            IEmailService emailService,
                            IEnderecoService enderecoService,
                            IIdentificacaoService identificacaoService,
                            ITelefoneService telefoneService) : base(repository, emailService, enderecoService, identificacaoService, telefoneService)
 {
     this.repository = repository;
 }
Ejemplo n.º 2
0
 public ClienteService(IClienteRepository repository,
                       IEmailService emailService,
                       IEnderecoService enderecoService,
                       IIdentificacaoService identificacaoService,
                       ITelefoneService telefoneService) : base(repository)
 {
     this.repository           = repository;
     this.emailService         = emailService;
     this.enderecoService      = enderecoService;
     this.identificacaoService = identificacaoService;
     this.telefoneService      = telefoneService;
 }