// GET: Weakness
        public ActionResult Index()
        {
            var service = new WeaknessService();
            var model   = service.GetAllWeaknesses();

            return(View(model));
        }
        //Service READONLY
        private WeaknessService CreateWeaknessService()
        {
            var service = new WeaknessService();

            return(service);
        }