Esempio n. 1
0
 public GetSquadraById(HttpClient client, IConfiguration configuration, IGetListaDistaccamentiByCodiceSede GetListaDistaccamentiByCodiceSede, IGetPersonaleByCF GetPersonaleByCF)
 {
     _client        = client;
     _configuration = configuration;
     _getListaDistaccamentiByCodiceSede = GetListaDistaccamentiByCodiceSede;
     _getPersonaleByCF = GetPersonaleByCF;
 }
Esempio n. 2
0
 public AddUtenteCommandHandler(IAddUtente addUtente, IGetPersonaleByCF personaleByCF, IGetAlberaturaUnitaOperative getAlberaturaUnitaOperative, IGetListaDistaccamentiByCodiceSede getListaDistaccamentiByCodiceSede, IGetDistaccamentoByCodiceSedeUC getDistaccamentoByCodiceSede)
 {
     _addUtente     = addUtente;
     _personaleByCF = personaleByCF;
     _getAlberaturaUnitaOperative       = getAlberaturaUnitaOperative;
     _getListaDistaccamentiByCodiceSede = getListaDistaccamentiByCodiceSede;
     _getDistaccamentoByCodiceSede      = getDistaccamentoByCodiceSede;
 }
Esempio n. 3
0
 public GetListaSquadre(HttpClient client, IConfiguration configuration,
                        IGetDistaccamentoByCodiceSedeUC GetDistaccamentoByCodiceSedeUC,
                        IGetPersonaleByCF GetPersonaleByCF,
                        IGetAlberaturaUnitaOperative getAlberaturaUnitaOperative,
                        IMemoryCache memoryCache)
 {
     _getDistaccamentoByCodiceSedeUC = GetDistaccamentoByCodiceSedeUC;
     _getPersonaleByCF            = GetPersonaleByCF;
     _getAlberaturaUnitaOperative = getAlberaturaUnitaOperative;
     _memoryCache   = memoryCache;
     _client        = client;
     _configuration = configuration;
 }
Esempio n. 4
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;
        }