public ActionResult Search_Way_Bill(Manifest_Control_SectionModel manifest)
 {
     if (Session["login_status"] != null)
     {
         int[] z = (int[])Session["function_id"];
         if (z.Contains(21))
         {
             return RedirectToAction("Index", new { way_bill_id = manifest.way_bill_id });
         }
         else
         {
             return RedirectToAction("../Home/Dashboard");
         }
     }
     else
     {
         return RedirectToAction("../Home");
     }
 }
 public ActionResult Search_Way_Bill( Manifest_Control_SectionModel manifest)
 {
     return RedirectToAction("Index", new { way_bill_id = manifest.way_bill_id });
 }