public void InsertUpdateCountryName(ArrayList country)
        {

            GeograficLocationStoredProcedure objgeo = new GeograficLocationStoredProcedure();
            country.Insert(6, Session["usersid"].ToString());
            objgeo.InsertUpdateCountryName(country);

        }
 public void InsertUpdateStateName(ArrayList state)
 {
     GeograficLocationStoredProcedure objgeographic = new GeograficLocationStoredProcedure();
     state.Insert(2, Session["usersid"].ToString());
     objgeographic.InsertUpdateStateName(state);
 }
 public void delCountryName(int delcountry)
 {
     GeograficLocationStoredProcedure objdelgeo = new GeograficLocationStoredProcedure();
     objdelgeo.delCountryName(delcountry);
 }
 public void deleteCity(int CITY_ID)
 {
     GeograficLocationStoredProcedure objdelcity = new GeograficLocationStoredProcedure();
     objdelcity.deleteCity(CITY_ID);
 }
 public void deleteState(int STATE_ID)
 {
     GeograficLocationStoredProcedure objdelstate = new GeograficLocationStoredProcedure();
     objdelstate.deleteState(STATE_ID);
 }
 public void InsertUpdateCityName(ArrayList City)
 {
     GeograficLocationStoredProcedure objcity = new GeograficLocationStoredProcedure();
     City.Insert(2, Session["usersid"].ToString());
     objcity.InsertUpdateCityName(City);
 }
 public void InsertNewCity(string COUNTRY_ID, string STATE_ID)
 {
     GeograficLocationStoredProcedure objinsertcity = new GeograficLocationStoredProcedure();
     objinsertcity.InsertNewCity(COUNTRY_ID, STATE_ID);
 }
 public void InsertNewState(string COUNTRY_ID)
 {
     GeograficLocationStoredProcedure objinsertstate = new GeograficLocationStoredProcedure();
     objinsertstate.InsertNewState(COUNTRY_ID);
 }