コード例 #1
0
ファイル: ArcommentManager.cs プロジェクト: ttongw/hxfz
        public Arcomment GetArcommentById(int?id)
        {
            Arcomment arcomment = iarcomment.GetArcommentById(id);

            return(arcomment);
        }
コード例 #2
0
ファイル: SqlArcomment.cs プロジェクト: ttongw/hxfz
        public Arcomment GetArcommentById(int?id)
        {
            Arcomment arcomment = db.Arcomment.Find(id);

            return(arcomment);
        }