public ActionResult Profile()
        {
            SetPageTitle("Profilo");

            User        bo  = new User();
            Anagrafiche boA = new Anagrafiche();

            UserModel ut = GetUserFromSession(HttpContext.Session);

            Profilo ret = bo.GetProfilo(ut.Utente.ID);

            Strumento[] strumenti = boA.GetListaStrumenti();

            ProfiloStrumento[] profiloStrumenti = bo.GetStrumentiCollegati(ret.IDUtente);

            int[] strumentiCollegati = Array.ConvertAll(profiloStrumenti, x => x.IDStrumento);

            ProfiloModel dati = new ProfiloModel
            {
                Utente             = ut.Utente,
                Profilo            = ret,
                Strumenti          = strumenti,
                StrumentiCollegati = strumentiCollegati
            };

            return(View("Profile", dati));
        }
        public IActionResult Strumenti()
        {
            Anagrafiche bo = new Anagrafiche();

            Strumento[] strumenti = bo.GetListaStrumenti();

            return(View("Strumenti", strumenti));
        }