[622] | 1 | namespace IndianHealthService.ClinicalScheduling
|
---|
| 2 | {
|
---|
| 3 | using System;
|
---|
| 4 | /// <summary>
|
---|
| 5 | /// This class was regenerated from Calendargrid.dll using Reflector.exe
|
---|
| 6 | /// by Sam Habiel for WorldVista. The original source code is lost.
|
---|
| 7 | /// </summary>
|
---|
| 8 | public class CGResource
|
---|
| 9 | {
|
---|
| 10 | private bool m_bInactive = false;
|
---|
| 11 | private int m_nHospitalLocationID = 0;
|
---|
| 12 | private int m_nResourceID = 0;
|
---|
| 13 | private int m_nTimeScale = 15;
|
---|
| 14 | private string m_sCancellationLetterText;
|
---|
| 15 | private string m_sHospitalLocation = "";
|
---|
| 16 | private string m_sLetterText;
|
---|
| 17 | private string m_sNoShowLetterText;
|
---|
| 18 | private string m_sResourceName = "";
|
---|
| 19 |
|
---|
| 20 | public string CancellationLetterText
|
---|
| 21 | {
|
---|
| 22 | get
|
---|
| 23 | {
|
---|
| 24 | return this.m_sCancellationLetterText;
|
---|
| 25 | }
|
---|
| 26 | set
|
---|
| 27 | {
|
---|
| 28 | this.m_sCancellationLetterText = value;
|
---|
| 29 | }
|
---|
| 30 | }
|
---|
| 31 |
|
---|
| 32 | public string HospitalLocation
|
---|
| 33 | {
|
---|
| 34 | get
|
---|
| 35 | {
|
---|
| 36 | return this.m_sHospitalLocation;
|
---|
| 37 | }
|
---|
| 38 | set
|
---|
| 39 | {
|
---|
| 40 | this.m_sHospitalLocation = value;
|
---|
| 41 | }
|
---|
| 42 | }
|
---|
| 43 |
|
---|
| 44 | public int HospitalLocationID
|
---|
| 45 | {
|
---|
| 46 | get
|
---|
| 47 | {
|
---|
| 48 | return this.m_nHospitalLocationID;
|
---|
| 49 | }
|
---|
| 50 | set
|
---|
| 51 | {
|
---|
| 52 | this.m_nHospitalLocationID = value;
|
---|
| 53 | }
|
---|
| 54 | }
|
---|
| 55 |
|
---|
| 56 | public bool Inactive
|
---|
| 57 | {
|
---|
| 58 | get
|
---|
| 59 | {
|
---|
| 60 | return this.m_bInactive;
|
---|
| 61 | }
|
---|
| 62 | set
|
---|
| 63 | {
|
---|
| 64 | this.m_bInactive = value;
|
---|
| 65 | }
|
---|
| 66 | }
|
---|
| 67 |
|
---|
| 68 | public string LetterText
|
---|
| 69 | {
|
---|
| 70 | get
|
---|
| 71 | {
|
---|
| 72 | return this.m_sLetterText;
|
---|
| 73 | }
|
---|
| 74 | set
|
---|
| 75 | {
|
---|
| 76 | this.m_sLetterText = value;
|
---|
| 77 | }
|
---|
| 78 | }
|
---|
| 79 |
|
---|
| 80 | public string NoShowLetterText
|
---|
| 81 | {
|
---|
| 82 | get
|
---|
| 83 | {
|
---|
| 84 | return this.m_sNoShowLetterText;
|
---|
| 85 | }
|
---|
| 86 | set
|
---|
| 87 | {
|
---|
| 88 | this.m_sNoShowLetterText = value;
|
---|
| 89 | }
|
---|
| 90 | }
|
---|
| 91 |
|
---|
| 92 | public int ResourceID
|
---|
| 93 | {
|
---|
| 94 | get
|
---|
| 95 | {
|
---|
| 96 | return this.m_nResourceID;
|
---|
| 97 | }
|
---|
| 98 | set
|
---|
| 99 | {
|
---|
| 100 | this.m_nResourceID = value;
|
---|
| 101 | }
|
---|
| 102 | }
|
---|
| 103 |
|
---|
| 104 | public string ResourceName
|
---|
| 105 | {
|
---|
| 106 | get
|
---|
| 107 | {
|
---|
| 108 | return this.m_sResourceName;
|
---|
| 109 | }
|
---|
| 110 | set
|
---|
| 111 | {
|
---|
| 112 | this.m_sResourceName = value;
|
---|
| 113 | }
|
---|
| 114 | }
|
---|
| 115 |
|
---|
| 116 | public int TimeScale
|
---|
| 117 | {
|
---|
| 118 | get
|
---|
| 119 | {
|
---|
| 120 | return this.m_nTimeScale;
|
---|
| 121 | }
|
---|
| 122 | set
|
---|
| 123 | {
|
---|
| 124 | this.m_nTimeScale = value;
|
---|
| 125 | }
|
---|
| 126 | }
|
---|
| 127 | }
|
---|
| 128 | }
|
---|
| 129 |
|
---|