public bool ConfirmTerms(string contractId)
        {
            var sql    = String.Format(@"update new_hindvcontract
                    set new_agreeonconditions=1
                    where new_HIndvContractId='{0}'", contractId);
            var result = CRMAccessDB.ExecuteNonQuery(sql);

            return(result > 0);
        }