public Inscricao_EventoModel(IAppServiceInscricao appServiceInscricao,
                              IAppServiceEvento appServiceEvento,
                              IAppServiceEmpresa appServiceEmpresa,
                              IAppServicePessoa appServicePessoa)
 {
     _appServiceEvento    = appServiceEvento;
     _appServiceInscricao = appServiceInscricao;
     _appServiceEmpresa   = appServiceEmpresa;
     _appServicePessoa    = appServicePessoa;
     //_userManager = userManager;
 }
 public IniciarModel(IAppServiceAtendimento appServiceAtendimento,
                     IAppServicePessoa appServicePessoa,
                     IAppServiceEmpresa appServiceEmpresa,
                     IAppServiceContador appServiceContador)
 {
     _appServiceAtendimento = appServiceAtendimento;
     _appServicePessoa      = appServicePessoa;
     _appServiceEmpresa     = appServiceEmpresa;
     //_userManager = userManager;
     _appServiceContador = appServiceContador;
 }
 public NovoModel(IAppServiceAtendimento appServiceAtendimento,
                  IAppServicePessoa appServicePessoa,
                  IAppServiceEmpresa appServiceEmpresa,
                  IAppServiceCanal appServiceCanal,
                  IAppServiceServico appServiceServico,
                  IAppServiceSetor appServiceSetor)
 {
     _appServiceAtendimento = appServiceAtendimento;
     _appServicePessoa      = appServicePessoa;
     _appServiceEmpresa     = appServiceEmpresa;
     _appServiceCanal       = appServiceCanal;
     _appServiceServico     = appServiceServico;
     _appServiceSetor       = appServiceSetor;
     //_userManager = userManager;
 }
Exemple #4
0
 public IndexModel(IAppServicePessoa appServicePessoa)
 {
     _pessoaApp = appServicePessoa;
 }
 public DeleteModel(IAppServicePessoa servicePessoa, IMapper mapper)
 {
     _pessoa = servicePessoa;
     _mapper = mapper;
 }
 public ConsultaNomeModel(IAppServicePessoa appServicePessoa)
 {
     _pessoaApp = appServicePessoa;
 }
 public PessoaController(IAppServicePessoa _appServicePessoa)
 {
     appServicePessoa = _appServicePessoa;
 }
 public EditModel(IAppServicePessoa pessoa, IMapper mapper)
 {
     _pessoa = pessoa;
     _mapper = mapper;
 }
Exemple #9
0
 public NovoModel(IAppServicePessoa appServicePessoa, IMapper mapper)
 {
     _pessoa = appServicePessoa;
     _mapper = mapper;
 }