12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System;
- using System.ComponentModel;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace CLIP.eForm.Consent.Entity
- {
- [Serializable]
- public class UnFinishedListVO
- {
- public UnFinishedListVO()
- {
- foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this))
- {
- if (property.DisplayName == "consentMstRid" || property.DisplayName == "cretno" ||
- property.DisplayName == "orderno" || property.DisplayName == "formrid")
- {
- property.SetValue(this, 0);
- }
- else
- {
- property.SetValue(this, "");
- }
- }
- }
- public string patientCode { get; set; }
- public string formcd { get; set; }
- public string consentName { get; set; }
- public string hngnm { get; set; }
- public string orderdate { get; set; }
- public string printonly { get; set; }
- public string certtarget { get; set; }
- public string consentState { get; set; }
- public int consentMstRid { get; set; }
- public string orddd { get; set; }
- public string visitType { get; set; }
- public string orddeptcd { get; set; }
- public int orderno { get; set; }
- public string ordercd { get; set; }
- public string ocrNumber { get; set; }
- public int cretno { get; set; }
- public string createusername { get; set; }
- public int formrid { get; set; }
- public string formguid { get; set; }
- }
- }
|