public IActionResult DeleteNoteForever(int noteId)
 {
     try
     {
         bool result = manager.DeletNoteForever(noteId);
         if (result)
         {
             return(this.Ok(new ResponseModel <int>()
             {
                 Status = true, Masseage = "Note Deleted Successfully.", Data = noteId
             }));
         }
         else
         {
             return(this.BadRequest(new { Status = false, Message = "Somethin went wrong." }));
         }
     }
     catch (Exception ex)
     {
         return(this.NotFound(new { Status = false, Message = ex.Message }));
     }
 }