/Rhino.Etl.Tests/UsingDAL/User.cs
http://github.com/ayende/rhino-etl · C# · 39 lines · 33 code · 6 blank · 0 comment · 0 complexity · b2983740343a63d2ba6a01f23c925edd MD5 · raw file
- namespace Rhino.Etl.Tests.UsingDAL
- {
- public class User
- {
- private string email;
- private int id;
- private string name;
- public User()
- {
- }
- public User(int id, string name, string email)
- {
- this.id = id;
- this.name = name;
- this.email = email;
- }
- public string Email
- {
- get { return email; }
- set { email = value; }
- }
- public int Id
- {
- get { return id; }
- set { id = value; }
- }
- public string Name
- {
- get { return name; }
- set { name = value; }
- }
- }
- }