Пример #1
0
 public DeleteUtenteAuthorization(IPrincipal principal, IGetUtenteByCF findUserByCF,
                                  IFindUserByUsername findUserByUsername,
                                  IGetAutorizzazioni getAutorizzazioni)
 {
     currentUser         = principal;
     _findUserByCF       = findUserByCF;
     _findUserByUsername = findUserByUsername;
     _getAutorizzazioni  = getAutorizzazioni;
 }
Пример #2
0
        public AddUtenteCommandHandler(IAddUtente addUtente, IGetPersonaleByCF personaleByCF,
                                       IGetAlberaturaUnitaOperative getAlberaturaUnitaOperative,
                                       IGetDistaccamentoByCodiceSedeUC getDistaccamentoByCodiceSede,
                                       IGetUtenteByCF getUtenteByCF,
                                       IAddRuoli addRuoli,
                                       IFindUserByUsername checkOmonimia)

        {
            _addUtente     = addUtente;
            _personaleByCF = personaleByCF;
            _getAlberaturaUnitaOperative  = getAlberaturaUnitaOperative;
            _getDistaccamentoByCodiceSede = getDistaccamentoByCodiceSede;
            _getUtenteByCF = getUtenteByCF;
            _addRuoli      = addRuoli;
            _checkOmonimia = checkOmonimia;
        }
Пример #3
0
 public NotificationDeleteUtente(IHubContext <NotificationHub> notificationHubContext, IGetUtenteByCF getUtenteByCF)
 {
     _notificationHubContext = notificationHubContext;
     _getUtenteByCF          = getUtenteByCF;
 }
Пример #4
0
 public CasLoginQueryHandler(HttpClient client, IConfiguration config, IGetUtenteByCF getUtenteByCF)
 {
     _client        = client;
     _config        = config;
     _getUtenteByCF = getUtenteByCF;
 }
Пример #5
0
 public DeleteRuolo(DbContext dbcontext, IGetUtenteByCF getUtenteByCF)
 {
     _dbcontext     = dbcontext;
     _getUtenteByCF = getUtenteByCF;
 }
Пример #6
0
 public DeleteUtenteCommandHandler(IDeleteUtente deleteUtente, IGetUtenteByCF getUtenteByCF)
 {
     _deleteUtente  = deleteUtente;
     _getUtenteByCF = getUtenteByCF;
 }
Пример #7
0
 public NotificationAddRuoli(IHubContext <NotificationHub> notificationHubContext, IGetUtenteByCF getUtenteByCF)
 {
     _notificationHubContext = notificationHubContext;
     _getUtenteByCF          = getUtenteByCF;
 }
Пример #8
0
 public CheckEsistenzaRuolo(IGetAlberaturaUnitaOperative getListaUO, IGetUtenteByCF getUtenteByCF)
 {
     _getListaUO    = getListaUO;
     _getUtenteByCF = getUtenteByCF;
 }