コード例 #1
0
 public Inscricao_EventoModel(IAppServiceInscricao appServiceInscricao,
                              IAppServiceEvento appServiceEvento,
                              IAppServiceEmpresa appServiceEmpresa,
                              IAppServicePessoa appServicePessoa)
 {
     _appServiceEvento    = appServiceEvento;
     _appServiceInscricao = appServiceInscricao;
     _appServiceEmpresa   = appServiceEmpresa;
     _appServicePessoa    = appServicePessoa;
     //_userManager = userManager;
 }
コード例 #2
0
 public IniciarModel(IAppServiceAtendimento appServiceAtendimento,
                     IAppServicePessoa appServicePessoa,
                     IAppServiceEmpresa appServiceEmpresa,
                     IAppServiceContador appServiceContador)
 {
     _appServiceAtendimento = appServiceAtendimento;
     _appServicePessoa      = appServicePessoa;
     _appServiceEmpresa     = appServiceEmpresa;
     //_userManager = userManager;
     _appServiceContador = appServiceContador;
 }
コード例 #3
0
 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;
 }
コード例 #4
0
 public IndexModel(IAppServicePessoa appServicePessoa)
 {
     _pessoaApp = appServicePessoa;
 }
コード例 #5
0
 public DeleteModel(IAppServicePessoa servicePessoa, IMapper mapper)
 {
     _pessoa = servicePessoa;
     _mapper = mapper;
 }
コード例 #6
0
 public ConsultaNomeModel(IAppServicePessoa appServicePessoa)
 {
     _pessoaApp = appServicePessoa;
 }
コード例 #7
0
 public PessoaController(IAppServicePessoa _appServicePessoa)
 {
     appServicePessoa = _appServicePessoa;
 }
コード例 #8
0
 public EditModel(IAppServicePessoa pessoa, IMapper mapper)
 {
     _pessoa = pessoa;
     _mapper = mapper;
 }
コード例 #9
0
 public NovoModel(IAppServicePessoa appServicePessoa, IMapper mapper)
 {
     _pessoa = appServicePessoa;
     _mapper = mapper;
 }