Guest User

Untitled

a guest
Jan 15th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. public class Client
  2. {
  3. [DisplayName("Client Account")]
  4. public int ClientID { get; set; }
  5. [DisplayName("Client Name")]
  6. public string Name { get; set; }
  7. public string Address { get; set; }
  8. [DisplayName("Home Phone")]
  9. public string PhoneH { get; set; }
  10. [DisplayName("Emergency Phone")]
  11. public string PhoneE { get; set; }
  12. [DisplayName("Alternate Phone")]
  13. public string PhoneA { get; set; }
  14. public string Directions { get; set; }
  15. [DisplayName("Comments")]
  16. public string SComment { get; set; }
  17. }
Add Comment
Please, Sign In to add comment