public DeleteUtenteAuthorization(IPrincipal principal, IGetUtenteByCF findUserByCF, IFindUserByUsername findUserByUsername, IGetAutorizzazioni getAutorizzazioni) { currentUser = principal; _findUserByCF = findUserByCF; _findUserByUsername = findUserByUsername; _getAutorizzazioni = getAutorizzazioni; }
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; }
public NotificationDeleteUtente(IHubContext <NotificationHub> notificationHubContext, IGetUtenteByCF getUtenteByCF) { _notificationHubContext = notificationHubContext; _getUtenteByCF = getUtenteByCF; }
public CasLoginQueryHandler(HttpClient client, IConfiguration config, IGetUtenteByCF getUtenteByCF) { _client = client; _config = config; _getUtenteByCF = getUtenteByCF; }
public DeleteRuolo(DbContext dbcontext, IGetUtenteByCF getUtenteByCF) { _dbcontext = dbcontext; _getUtenteByCF = getUtenteByCF; }
public DeleteUtenteCommandHandler(IDeleteUtente deleteUtente, IGetUtenteByCF getUtenteByCF) { _deleteUtente = deleteUtente; _getUtenteByCF = getUtenteByCF; }
public NotificationAddRuoli(IHubContext <NotificationHub> notificationHubContext, IGetUtenteByCF getUtenteByCF) { _notificationHubContext = notificationHubContext; _getUtenteByCF = getUtenteByCF; }
public CheckEsistenzaRuolo(IGetAlberaturaUnitaOperative getListaUO, IGetUtenteByCF getUtenteByCF) { _getListaUO = getListaUO; _getUtenteByCF = getUtenteByCF; }