DocListVO.cs.svn-base 686 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CLIP.eForm.Consent.Entity {
  6. [Serializable]
  7. public class DocListVO {
  8. public string doctorId { get; set; }
  9. public string doctorNm { get; set; }
  10. public string drKind { get; set; }
  11. public DocListVO() {
  12. }
  13. public DocListVO(string doctorId, string doctorNm, string drKind) {
  14. this.doctorId = doctorId;
  15. this.doctorNm = doctorNm;
  16. this.drKind = drKind;
  17. }
  18. //public DocListVO(String doctorId, String doctorNm, String drKind) {
  19. // this.doctorId = doctorId;
  20. // this.doctorNm = doctorNm;
  21. // this.drKind = drKind;
  22. //}
  23. }
  24. }