예제 #1
0
파일: TableBLL.cs 프로젝트: lyfb/cms-1
        public TableRow GetRecord(int rowId)
        {
            TableRow e = null;

            dal.GetRow(rowId, rd => { e = rd.ToEntity <TableRow>(); });

            return(e);
        }