public IActionResult GetNote() { var getId = Convert.ToInt64(GetTokenType()); IEnumerable <Note> note = _notesBL.GetNote(getId); return(Ok(note)); }