コード例 #1
0
ファイル: DocumentUpdate.cs プロジェクト: ericramses/YPILIS
        public override bool IsDirty()
        {
            bool result = false;

            YellowstonePathology.Business.Persistence.SqlCommandSubmitter sqlCommandSubmitter = this.GetSqlCommands(this.m_Value);
            if (sqlCommandSubmitter.HasChanges() == true)
            {
                sqlCommandSubmitter.LogCommands();
                result = true;
            }
            return(result);
        }