Exemplo n.º 1
0
        public bool SaveNewCVAction(DataSet dsTblCaseAction, int nCaseID, DataSet dsTblCase)
        {
            string cmdtxt = "SELECT * FROM tblCase WHERE nCaseID = '"
                            + SqlHelperUtils.ToSingleQuoteString(nCaseID.ToString()) + "'";

            SqlHelperUtils.UpdateDataSetTwoTableWithTransaction(dsTblCase, cmdtxt, dsTblCaseAction, cmdtxtTblCaseActionSave);
            return(true);
        }