码迷,mamicode.com
首页 > 其他好文 > 详细

年前辞职-WCF入门学习(6)

时间:2015-01-12 22:30:45      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 
 6 namespace EmployeeService
 7 {
 8     public class Employee
 9     {
10         private int _id;
11         private string _name;
12         private bool _gender;
13         private DateTime _dateOfBirth;
14 
15         public int Id
16         {
17             get { return _id; }
18             set { this._id = value; }
19         }
20         public String Name
21         {
22             get { return _name; }
23             set { this._name = value; }
24         }
25         public bool Gender
26         {
27             get { return _gender; }
28             set { this._gender = value; }
29         }
30         public DateTime DateOfBirth
31         {
32             get { return _dateOfBirth; }
33             set { this._dateOfBirth = value; }
34         }
35     }
36 }
View Code

 

年前辞职-WCF入门学习(6)

标签:

原文地址:http://www.cnblogs.com/sheldon-lou/p/4219950.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!