public bool SaveCityAreaLocation(DC_CityAreaLocation _obj) { using (DataLayer.DL_Masters obj = new DataLayer.DL_Masters()) { return(obj.SaveCityAreaLocation(_obj)); } }
public bool SaveCityAreaLocation(DC_CityAreaLocation _obj) { object result = null; ServiceConnection.MDMSvcProxy.PostData(ConfigurationManager.AppSettings["Master_SaveCityAreaLocation"], _obj, typeof(MDMSVC.DC_CityAreaLocation), typeof(bool), out result); return((bool)result); }
public bool SaveCityAreaLocation(DC_CityAreaLocation _obj) { using (BusinessLayer.BL_Masters obj = new BL_Masters()) { return(obj.SaveCityAreaLocation(_obj)); } }