public Inscricao_RemoveModel(IAppServiceEvento appServiceEvento,
                              IAppServiceInscricao appServiceInscricao,
                              IMapper mapper)
 {
     _appServiceEvento    = appServiceEvento;
     _appServiceInscricao = appServiceInscricao;
     _mapper = mapper;
 }
 public Inscricao_EventoModel(IAppServiceInscricao appServiceInscricao,
                              IAppServiceEvento appServiceEvento,
                              IAppServiceEmpresa appServiceEmpresa,
                              IAppServicePessoa appServicePessoa)
 {
     _appServiceEvento    = appServiceEvento;
     _appServiceInscricao = appServiceInscricao;
     _appServiceEmpresa   = appServiceEmpresa;
     _appServicePessoa    = appServicePessoa;
     //_userManager = userManager;
 }
예제 #3
0
 public Evento_ListModel(IAppServiceInscricao appServiceEvento,
                         IMapper mapper)
 {
     _mapper = mapper;
     _appServiceInscricao = appServiceEvento;
 }