public PessoaJuridicaAppService(IPessoaJuridicaService pessoaJuridicaService, IUnitOfWork uow,
                                 IContatoClienteService contatoClienteService, IEnderecoClienteService enderecoClienteService,
                                 IPedidoAppService pedidoAppService)
     : base(uow)
 {
     _pessoaJuridicaService  = pessoaJuridicaService;
     _contatoClienteService  = contatoClienteService;
     _enderecoClienteService = enderecoClienteService;
     _pedidoAppService       = pedidoAppService;
 }
示例#2
0
 public EnderecoClienteAppService(IEnderecoClienteService enderecoClienteService, IUnitOfWork uow)
     : base(uow)
 {
     _enderecoClienteService = enderecoClienteService;
 }