熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

ASP.NET MVC 4框架揭秘:基於IoC的ControllerFactory(1)[2]

2022-06-13   來源: .NET編程 

  在一個ASPNET MVC應用中添加對Unity的程序集MicrosoftPracticesUnitydll的引用(如果讀者不想安裝Unity可以通過下載本實例的源代碼的方式獲取該程序集)然後在Models目錄下定義如下一個表示員工信息的Employee類型

  public class Employee

  {

  [Display(Name=ID)]

  public string Id { get; private set; }

  [Display(Name = 姓名)]

  public string Name { get; private set; }

  [Display(Name = 性別)]

  public string Gender { get; private set; }

  [Display(Name = 出生日期)]

  [DataType(DataTypeDate)]

  public DateTime BirthDate { get; private set; }

  [Display(Name = 部門)]

  public string Department { get; private set; }

  public Employee(string id string name string gender DateTime birthDate

  string department)

  {

  thisId             = id;

  thisName           = name;

  thisGender         = gender;

  thisBirthDate  = birthDate;

  thisDepartment     = department;

  }

  }

       返回目錄ASPNET MVC 框架揭秘

       編輯推薦

       ASP NET開發培訓視頻教程

       Microsoft NET框架程序設計視頻教程

       Java程序性能優化讓你的Java程序更快更穩定

       Visual C++音頻/視頻技術開發與實戰

[]  []  


From:http://tw.wingwit.com/Article/program/net/201311/16074.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.