Beispiel #1
0
        public DataTable getState_byCountryId(Int64 CountryId)
        {
            DataTable dt = new DataTable();

            try
            {
                Cls_VendorMaster_db objCls_VendorMaster_db = new Cls_VendorMaster_db();
                dt = objCls_VendorMaster_db.getState_byCountryId(CountryId);
                return(dt);
            }
            catch (Exception ex)
            {
                ErrHandler.writeError(ex.Message, ex.StackTrace);
                return(dt);
            }
        }