Exemple #1
0
 public AutoInfracaoController(IAutoInfracaoAppService autoInfracaoApp, IProcessoAppService processoApp, IFornecedorAppService fornecedorApp, IEnderecoAppService enderecoApp)
 {
     _autoInfracaoApp = autoInfracaoApp;
     _processoApp     = processoApp;
     _fornecedorApp   = fornecedorApp;
     _enderecoApp     = enderecoApp;
 }
Exemple #2
0
 public EmpresasController(IEmpresaAppService empresaAppService, IEnderecoAppService enderecoAppService, ITelefoneAppService telefoneAppService, ICnaeAppService cnaeAppService, ISetorAppService setorAppService, IUFAppService uFAppService /*, IFuncionarioAppService funcionarioAppService*/)
 {
     _empresaAppService  = empresaAppService;
     _enderecoAppService = enderecoAppService;
     _telefoneAppService = telefoneAppService;
     _cnaeAppService     = cnaeAppService;
     _setorAppService    = setorAppService;
     _uFAppService       = uFAppService;
 }
Exemple #3
0
 public EnderecoController(
     IEnderecoAppService enderecoAppService,
     ILogger <EnderecoController> logger,
     INotificationHandler <DomainNotification> notifications,
     IMediatorHandler mediator)
     : base(logger, notifications, mediator)
 {
     _enderecoAppService = enderecoAppService;
 }
 public EnderecoController(
     IEnderecoAppService enderecoAppService,
     IEstadoAppService estadoAppService,
     ICidadeAppService cidadeAppService
     )
 {
     _enderecoAppService = enderecoAppService;
     _cidadeAppService   = cidadeAppService;
     _estadoAppService   = estadoAppService;
 }
 public ClientesController(
     IClienteAppService clienteApp,
     IEstadoAppService estadoApp,
     ICidadeAppService cidadeApp,
     IEnderecoAppService enderecoApp)
 {
     _clienteApp  = clienteApp;
     _estadoApp   = estadoApp;
     _cidadeApp   = cidadeApp;
     _enderecoApp = enderecoApp;
 }
Exemple #6
0
 public ClienteController(IClienteAppService clienteAppService,
                          IEstadoAppService estadoAppService,
                          ICidadeAppService cidadeAppService,
                          IEnderecoAppService enderecoAppService
                          )
 {
     _clienteAppService  = clienteAppService;
     _estadoAppService   = estadoAppService;
     _cidadeAppService   = cidadeAppService;
     _enderecoAppService = enderecoAppService;
 }
Exemple #7
0
 public ConviteController(ISolicitacaoAppService solicitacaoDocumentoAppService,
                          IFichaCadastralAppService fichaCadastralAppService,
                          IEnderecoAppService enderecoAppService,
                          IBancoAppService bancoAppService,
                          IContatoAppService contatoAppService,
                          ISolicitacaoAppService solicitacaoAppService)
 {
     _solicitacaoAppService    = solicitacaoDocumentoAppService;
     _fichaCadastralAppService = fichaCadastralAppService;
     _enderecoAppService       = enderecoAppService;
     _contatoAppService        = contatoAppService;
     _bancoAppService          = bancoAppService;
 }
Exemple #8
0
 public EnderecosController(IEnderecoAppService enderecoApp)
 {
     _enderecoApp = enderecoApp;
 }
 public EnderecoController(IEnderecoAppService enderecoApp, IPacienteAppService pacienteApp)
 {
     _enderecoApp = enderecoApp;
     _pacienteApp = pacienteApp;
 }
Exemple #10
0
 public HomeController(IEnderecoAppService enderecoApp, ICategoriaAppService categoriaApp, IClienteAppService clienteApp)
 {
     _enderecoApp  = enderecoApp;
     _categoriaApp = categoriaApp;
     _clienteApp   = clienteApp;
 }
 public EnderecosController(IEnderecoAppService enderecoApp, IPessoaAppService pessoaApp)
 {
     _enderecoApp = enderecoApp;
     _pessoaApp = pessoaApp;
 }
Exemple #12
0
 public AmigosController(IAmigoAppService amigoAppService, IJogoAppService jogoAppService, IEnderecoAppService enderecoAppService)
 {
     _amigoAppService    = amigoAppService;
     _jogoAppService     = jogoAppService;
     _enderecoAppService = enderecoAppService;
 }
 public ClientesController(IClienteAppService clienteApp, IEnderecoAppService enderecoApp)
 {
     _clienteApp  = clienteApp;
     _enderecoApp = enderecoApp;
 }
Exemple #14
0
 public EnderecoController(IEnderecoAppService app)
 {
     _app = app;
 }
 public EnderecosController(IEnderecoAppService enderecoAppService)
 {
     _enderecoAppService = enderecoAppService;
 }
Exemple #16
0
 public ProcessoController(IProcessoAppService processoApp, IFornecedorAppService fornecedorApp, IEnderecoAppService enderecoApp)
 {
     _processoApp   = processoApp;
     _fornecedorApp = fornecedorApp;
     _enderecoApp   = enderecoApp;
 }
 public EnderecoController(IEnderecoAppService enderecoAppService)
 {
     _enderecoAppService = enderecoAppService;
 }
Exemple #18
0
 public EnderecoController(IMapper mapper,
                           IEnderecoAppService enderecoAppService)
 {
     _mapper             = mapper;
     _enderecoAppService = enderecoAppService;
 }