2014年1月22日
摘要: Listing 6-1. The Product Model Classusing System;using System.Collections.Generic;using System.Linq;using System.Web;namespace EssentialTools.Models{ public class Product { public int ProductId { get; set; } public string Name { get; set; } public string Description { get;... 阅读全文
posted @ 2014-01-22 14:29 逝者如斯(乎) 阅读(175) 评论(0) 推荐(0)
摘要: Listing 5-1. Creating a Simple Domain Model Classusing System;using System.Collections.Generic;using System.Linq;using System.Web;namespace Razor.Models{ public class Product { public int ProductId { get; set; } public string Name { get; set; } public string Description { ... 阅读全文
posted @ 2014-01-22 10:26 逝者如斯(乎) 阅读(197) 评论(0) 推荐(0)