コード例 #1
0
ファイル: CLogBLL.cs プロジェクト: scalzdp/studydoc
 /// <summary>
 /// 用指定的ID,取得 LogEntity 对象。
 /// </summary>
 /// <param name="ID">主键值</param>
 /// <returns>成功返回 LogEntity 对象;失败返回null。</returns>
 public static LogEntity Load(long ID)
 {
     try
     {
         CLogDAL d = new CLogDAL();
         return d.Load(ID);
     }
     catch(Exception ex)
     {
         throw ex;
     }
 }