示例#1
0
文件: TableBLL.cs 项目: lyfb/cms-1
        public Table GetTable(int tableId)
        {
            Table e = null;

            dal.GetTable(tableId, rd => { e = rd.ToEntity <Table>(); });

            return(e);
        }