示例#1
0
文件: Note.cs 项目: CarverLab/Oyster
        public void Update(string SyncTime, string Description)
        {
            Functions F = new Functions();
            SyncTime = F.CheckSqlSafeString(SyncTime);
            Description = F.CheckSqlSafeString(Description);

            F.EditNote(mvarID,SyncTime,Description);
            F.Dispose();
        }