public object search(string query)
 {
     try
     {
         return(SectionMdl.search_sections(query));
     }
     catch (Exception e)
     {
         return(new { state = false, message = "Server Error", exception = e });
     }
 }