public ConvocacaoAppService(IUnitOfWork unitOfWork,
                             IConvocacaoService convocacaoService,
                             IListaOpcoes opcoesComparecimento,
                             IPrimeiroAcessoService primeiroAcessoService) : base(unitOfWork)
 {
     _convocacaoService     = convocacaoService;
     _opcoesComparecimento  = opcoesComparecimento;
     _primeiroAcessoService = primeiroAcessoService;
 }
예제 #2
0
 public EmailServices(IConfiguration configuration,
                      ISysConfig sysConfig,
                      IConvocacaoService convocacaoService,
                      IProcessoService processoService,
                      IPasswordGenerator passwordGenerator,
                      IConvocadoService convocadoService
                      )
 {
     _configuration     = configuration;
     _sysConfig         = sysConfig;
     _convocacaoService = convocacaoService;
     _processoService   = processoService;
     _passwordGenerator = passwordGenerator;
     _convocadoService  = convocadoService;
 }
예제 #3
0
 public ConvocacaoController(IConvocacaoAppService convocacaoAppService,
                             IConvocadoAppService convocadoAppService,
                             ApplicationUserManager userManager,
                             IDocumentacaoAppService documentacaoAppService,
                             IProcessoAppService processoAppService,
                             IEnumDescription enumDescription,
                             ISysConfig sysConfig,
                             IConvocacaoService convocacaoService,
                             IPasswordGenerator passwordGenerator
                             )
 {
     _convocacaoAppService   = convocacaoAppService;
     _convocadoAppService    = convocadoAppService;
     _userManager            = userManager;
     _documentacaoAppService = documentacaoAppService;
     _processoAppService     = processoAppService;
     _enumDescription        = enumDescription;
     _sysConfig         = sysConfig;
     _convocacaoService = convocacaoService;
     _passwordGenerator = passwordGenerator;
 }