Esempio n. 1
0
 public CadastroSalaoService()
 {
     service = new SalaoService();
     serviceEndereco = new Endereco.EnderecoService();
     serviceEstado = new Salao.Domain.Service.Endereco.EstadoService();
     serviceCidade = new Salao.Domain.Service.Endereco.CidadeService();
     serviceBairro = new Salao.Domain.Service.Endereco.BairroService();
     serviceTelefone = new Salao.Domain.Service.Endereco.TelefoneService();
     serviceEmail = new Salao.Domain.Service.Endereco.EmailService();
 }
Esempio n. 2
0
 public EnderecoApp(IEnderecoService enderecoService)
     : base(enderecoService)
 {
     _enderecoService = enderecoService;
 }
 public EnderecosController(IEnderecoService enderecoService, IMapper mapper)
 {
     _enderecoService = enderecoService;
     _mapper          = mapper;
 }
 public EstabelecimentoService(IEstabelecimentoRepository estabelecimentoRepository, IEnderecoService enderecoService)
 {
     _estabelecimentoRepository = estabelecimentoRepository;
     _estabelecimentoService    = enderecoService;
 }
Esempio n. 5
0
 public EnderecoController(IEnderecoService enderecoService)
 {
     _enderecoService = enderecoService;
 }
Esempio n. 6
0
 public PessoaController(IPessoaService service, IContatoTipoService tipo, IPessoaMarcadorService marcador, IEnderecoTipoService endereco, IEnderecoService enderecoService, IContatoService contatoService)
 {
     _mapper                = AutoMapperConfig.Mapper;
     _pessoaService         = service;
     _pessoaMarcadorService = marcador;
     _contatoTipoService    = tipo;
     _enderecoTipoService   = endereco;
     _enderecoService       = enderecoService;
     _contatoService        = contatoService;
 }
Esempio n. 7
0
 public EmpresaController(IEmpresaService empresaService, IEnderecoService enderecoService, IValidatorService validatorService)
 {
     _empresaService   = empresaService;
     _validatorService = validatorService;
     _enderecoService  = enderecoService;
 }
Esempio n. 8
0
 public EmpresaAppService(IEmpresaService empresaService, ITelefoneService telefoneService, IEnderecoService enderecoService, IFuncionarioService funcionarioService)
 {
     _empresaService     = empresaService;
     _telefoneService    = telefoneService;
     _enderecoService    = enderecoService;
     _funcionarioService = funcionarioService;
 }
Esempio n. 9
0
 public EnderecoAppService(IEnderecoService enderecoService)
 {
     _enderecoService = enderecoService;
 }
Esempio n. 10
0
 public EnderecoController(IMapper mapper, IEnderecoService enderecoApplication)
     : base(mapper, enderecoApplication, NOME_SERVICO)
 {
     _mapper = mapper;
     _enderecoApplication = enderecoApplication;
 }
Esempio n. 11
0
 public EnderecoAppService(IEnderecoService enderecoService, IClienteAppService clienteAppService, ICidadeAppService cidadeAppService)
 {
     _enderecoService   = enderecoService;
     _clienteAppService = clienteAppService;
     _cidadeAppService  = cidadeAppService;
 }
Esempio n. 12
0
 public ClienteService(IClienteRepository clienteRepository, IUsuarioService usuarioService, IEnderecoService enderecoService, IMapper mapper, IEmpresaUsuarioService empresaUsuarioService)
     : base(clienteRepository)
 {
     _clienteRepository     = clienteRepository;
     _usuarioService        = usuarioService;
     _enderecoService       = enderecoService;
     _empresaUsuarioService = empresaUsuarioService;
     _mapper = mapper;
 }
 public EnderecoPessoaController(IEnderecoService enderecoService)
 {
     this.enderecoService = enderecoService;
 }
Esempio n. 14
0
 public EnderecoAppService(IEnderecoService EnderecoService)
     : base(EnderecoService)
 {
     _EnderecoService = EnderecoService;
 }
Esempio n. 15
0
 public EnderecoAppService(IEnderecoService enderecoService, IRepositoryEndereco enderecoRepository)
 {
     _enderecoService    = enderecoService;
     _enderecoRepository = enderecoRepository;
 }
 public EnderecoApplicationService(IEnderecoService enderecoService)
 {
     _enderecoService = enderecoService;
 }
Esempio n. 17
0
 public EnderecoController(IEnderecoService service)
 {
     _service = service;
 }
Esempio n. 18
0
 public ClienteAppService(IClienteService clienteService, IEnderecoService enderecoService)
 {
     _clienteService  = clienteService;
     _enderecoService = enderecoService;
 }