public static void insertRow(Location_Table temp)
 {
     DB.Location_Table.InsertOnSubmit(temp);
     DB.SubmitChanges();
 }
 public static void deleteRow(Location_Table temp)
 {
     DB.Location_Table.DeleteOnSubmit(temp);
     DB.SubmitChanges();
 }