12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace CLIP.eForm.Consent.Entity {
- [Serializable]
- public class DocListVO {
- public string doctorId { get; set; }
- public string doctorNm { get; set; }
- public string drKind { get; set; }
- public DocListVO() {
- }
- public DocListVO(string doctorId, string doctorNm, string drKind) {
- this.doctorId = doctorId;
- this.doctorNm = doctorNm;
- this.drKind = drKind;
- }
- //public DocListVO(String doctorId, String doctorNm, String drKind) {
- // this.doctorId = doctorId;
- // this.doctorNm = doctorNm;
- // this.drKind = drKind;
- //}
- }
- }
|