コード例 #1
0
ファイル: BllCity.cs プロジェクト: WCR-National/WcrSource
        public string RecordInsert(PropCity objProperty, string UserName)
        {
            Dllcity objDal = new Dllcity();

            try
            {
                return(objDal.InsertCity(objProperty, UserName));
            }
            catch (Exception info)
            {
                throw info;
            }
            finally
            {
                objDal = null;
            }
        }
コード例 #2
0
ファイル: BllCity.cs プロジェクト: WCR-National/WcrSource
        public string StateWiseCities(PropCity objProperty)
        {
            Dllcity objDal = new Dllcity();

            try
            {
                return(objDal.StateWiseCity(objProperty));
            }
            catch (Exception info)
            {
                throw info;
            }
            finally
            {
                objDal = null;
            }
        }