// GET: api/Section
 public object Get()
 {
     try
     {
         return(SectionMdl.get_sections());
     }
     catch (Exception e)
     {
         return(new { state = false, message = "Server Error", exception = e });
     }
 }