您目前尚未登陆,请选择【登陆】或【注册
首页->博客论坛->NBear+NBear开发BBS系统源码>>NBearDAL/EntityConvertor/MotherBoardConvertor.cs>>源码在线查看
温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:NBear+NBear开发BBS系统源码
当前文件:文件类型 NBBS/NBearDAL/EntityConvertor/MotherBoardConvertor.cs打开代码结构图
普通视图
		            
1using System; 2using NBBS.Entity; 3 4namespace NBBS.NBearDAL.EntityConvertor 5{ 6 /// <summary> 7 /// 实体类转换器-主版面 8 /// </summary> 9 public class MotherBoardConvertor 10 { 11 public static t_MotherBoard EntityToNBear(MotherBoardInfo motherBoard) 12 { 13 t_MotherBoard motherBoardTable = new t_MotherBoard(); 14 15 motherBoardTable.MotherBoard_ID = motherBoard.ID; 16 motherBoardTable.MotherBoard_Name = motherBoard.Name; 17 motherBoardTable.MotherBoard_Place = motherBoard.Place; 18 19 return motherBoardTable; 20 } 21 22 public static MotherBoardInfo NBearToEntity(t_MotherBoard motherBoardTable) 23 { 24 MotherBoardInfo motherBoard = new MotherBoardInfo(); 25 26 motherBoard.ID = motherBoardTable.MotherBoard_ID; 27 motherBoard.Name = motherBoardTable.MotherBoard_Name; 28 motherBoard.Place = motherBoardTable.MotherBoard_Place; 29 30 return motherBoard; 31 } 32 } 33} 34
还没有找到您心仪的内容?请用.net源码大搜捕
代码片断 打包下载该项目完整源码:NBear+NBear开发BBS系统源码
51Aspx.com 版权所有 CopyRight © 2000-2008. 京ICP备06046876号