public int Update_StationsDAL(Station s)
 {
     try
     {
         using (var orr = new Online_Railway_reservation_systemEntities())
         {
             orr.Configuration.ProxyCreationEnabled = false;
             orr.Update_Stations(s.Station_ID,s.Station_Name,s.Latitude,s.Longtitude,s.Status);
             return 1;
         }
     }
     catch (Exception)
     {
         return 0;
     }
 }