Guest User

Untitled

a guest
Feb 19th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Castle.ActiveRecord;
  6.  
  7. namespace TheTeam.TeamSpace.ActiveRecord
  8. {
  9. [ActiveRecord]
  10. public class Client : Securable
  11. {
  12. public Client()
  13. {
  14.  
  15. }
  16.  
  17. public Client(string title, string description)
  18. : base (title, description)
  19. {
  20.  
  21. }
  22.  
  23. [PrimaryKey]
  24. public int ClientId
  25. {
  26. get;
  27. private set;
  28. }
  29.  
  30. [Property]
  31. public int PrimaryContactUserId
  32. {
  33. get;
  34. set;
  35. }
  36. }
  37. }
Add Comment
Please, Sign In to add comment