public ActionResult ValueNotes()
        {
            var model = new LookupModel
            {
                LookupType = "Value notes",
                ValueNotes = _reader.GetAllValueNotes()
            };

            return(View("LookUpList", model));
        }