/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

  1. namespace Rhino.Etl.Tests.UsingDAL
  2. {
  3. public class User
  4. {
  5. private string email;
  6. private int id;
  7. private string name;
  8. public User()
  9. {
  10. }
  11. public User(int id, string name, string email)
  12. {
  13. this.id = id;
  14. this.name = name;
  15. this.email = email;
  16. }
  17. public string Email
  18. {
  19. get { return email; }
  20. set { email = value; }
  21. }
  22. public int Id
  23. {
  24. get { return id; }
  25. set { id = value; }
  26. }
  27. public string Name
  28. {
  29. get { return name; }
  30. set { name = value; }
  31. }
  32. }
  33. }