Produced by Araxis Merge on 3/27/2018 2:06:38 PM Eastern Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.
| # | Location | File | Last Modified |
|---|---|---|---|
| 1 | BMS_v2.4_Code.zip\BMS_v2.4_Code\BMS.VistaIntegration.VIA\Service References\BackgroundProcessService | Reference.cs | Wed Mar 21 14:50:18 2018 UTC |
| 2 | BMS_v2.4_Code.zip\BMS_v2.4_Code\BMS.VistaIntegration.VIA\Service References\BackgroundProcessService | Reference.cs | Wed Mar 21 23:28:09 2018 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 75 | 8544 |
| Changed | 74 | 148 |
| Inserted | 0 | 0 |
| Removed | 0 | 0 |
| Whitespace | |
|---|---|
| Character case | Differences in character case are significant |
| Line endings | Differences in line endings (CR and LF characters) are ignored |
| CR/LF characters | Not shown in the comparison detail |
No regular expressions were active.
| 1 | //-------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- | |
| 2 | // <auto-g enerated> | |
| 3 | // Thi s code was generated by a tool . | |
| 4 | // Run time Versi on:4.0.303 19.42000 | |
| 5 | // | |
| 6 | // Cha nges to th is file ma y cause in correct be havior and will be l ost if | |
| 7 | // the code is r egenerated . | |
| 8 | // </auto- generated> | |
| 9 | //-------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- | |
| 10 | ||
| 11 | namespace BMS.VistaI ntegration .Via.Backg roundProce ssService { | |
| 12 | ||
| 13 | ||
| 14 | /// <r emarks/> | |
| 15 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 16 | [Syste m.Serializ ableAttrib ute()] | |
| 17 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 18 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 19 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 20 | public partial c lass Valid ationExcep tion : obj ect, Syste m.Componen tModel.INo tifyProper tyChanged { | |
| 21 | ||
| 22 | pr ivate stri ng errorDe scriptionF ield; | |
| 23 | ||
| 24 | pr ivate stri ng[] custo mMsgValues Field; | |
| 25 | ||
| 26 | pr ivate Syst em.Nullabl e<errorCod eEnum> err orCodeFiel d; | |
| 27 | ||
| 28 | pr ivate Syst em.Nullabl e<bool> lo ggedField; | |
| 29 | ||
| 30 | // / <remarks /> | |
| 31 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(IsNull able=true, Order=0)] | |
| 32 | pu blic strin g errorDes cription { | |
| 33 | get { | |
| 34 | retu rn this.er rorDescrip tionField; | |
| 35 | } | |
| 36 | set { | |
| 37 | this .errorDesc riptionFie ld = value ; | |
| 38 | this .RaiseProp ertyChange d("errorDe scription" ); | |
| 39 | } | |
| 40 | } | |
| 41 | ||
| 42 | // / <remarks /> | |
| 43 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute("custo mMsgValues ", Order=1 )] | |
| 44 | pu blic strin g[] custom MsgValues { | |
| 45 | get { | |
| 46 | retu rn this.cu stomMsgVal uesField; | |
| 47 | } | |
| 48 | set { | |
| 49 | this .customMsg ValuesFiel d = value; | |
| 50 | this .RaiseProp ertyChange d("customM sgValues") ; | |
| 51 | } | |
| 52 | } | |
| 53 | ||
| 54 | // / <remarks /> | |
| 55 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(IsNull able=true, Order=2)] | |
| 56 | pu blic Syste m.Nullable <errorCode Enum> erro rCode { | |
| 57 | get { | |
| 58 | retu rn this.er rorCodeFie ld; | |
| 59 | } | |
| 60 | set { | |
| 61 | this .errorCode Field = va lue; | |
| 62 | this .RaiseProp ertyChange d("errorCo de"); | |
| 63 | } | |
| 64 | } | |
| 65 | ||
| 66 | // / <remarks /> | |
| 67 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(IsNull able=true, Order=3)] | |
| 68 | pu blic Syste m.Nullable <bool> log ged { | |
| 69 | get { | |
| 70 | retu rn this.lo ggedField; | |
| 71 | } | |
| 72 | set { | |
| 73 | this .loggedFie ld = value ; | |
| 74 | this .RaiseProp ertyChange d("logged" ); | |
| 75 | } | |
| 76 | } | |
| 77 | ||
| 78 | pu blic event System.Co mponentMod el.Propert yChangedEv entHandler PropertyC hanged; | |
| 79 | ||
| 80 | pr otected vo id RaisePr opertyChan ged(string propertyN ame) { | |
| 81 | System.C omponentMo del.Proper tyChangedE ventHandle r property Changed = this.Prope rtyChanged ; | |
| 82 | if ((pro pertyChang ed != null )) { | |
| 83 | prop ertyChange d(this, ne w System.C omponentMo del.Proper tyChangedE ventArgs(p ropertyNam e)); | |
| 84 | } | |
| 85 | } | |
| 86 | } | |
| 87 | ||
| 88 | /// <r emarks/> | |
| 89 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 90 | [Syste m.Serializ ableAttrib ute()] | |
| 91 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 92 | public enum erro rCodeEnum { | |
| 93 | ||
| 94 | // / <remarks /> | |
| 95 | CO ULD_NOT_CR EATE_A_URL , | |
| 96 | ||
| 97 | // / <remarks /> | |
| 98 | CO NFIDENTIAL ITY_SENSIT IVE_RECORD _ACCESS_EX CEPTION, | |
| 99 | ||
| 100 | // / <remarks /> | |
| 101 | VI A_OPERATIO N_FAILED, | |
| 102 | ||
| 103 | // / <remarks /> | |
| 104 | VI A_CONSTRAI NT_VIOLATE D, | |
| 105 | ||
| 106 | // / <remarks /> | |
| 107 | RO OT_CAUSE_M SG, | |
| 108 | ||
| 109 | // / <remarks /> | |
| 110 | ME THOD_NOT_I MPLEMENTED , | |
| 111 | ||
| 112 | // / <remarks /> | |
| 113 | MI SSING_DUZ_ EXCEPTION, | |
| 114 | ||
| 115 | // / <remarks /> | |
| 116 | VI A_AUDIT_LO G_ERROR, | |
| 117 | ||
| 118 | // / <remarks /> | |
| 119 | TR ANSACTION_ WORK_EXCEP TION, | |
| 120 | ||
| 121 | // / <remarks /> | |
| 122 | MU LTIPLE_USE R_EXCEPTIO N, | |
| 123 | ||
| 124 | // / <remarks /> | |
| 125 | MU LTIPLE_PAT IENT_EXCEP TION, | |
| 126 | ||
| 127 | // / <remarks /> | |
| 128 | NO TE_IEN_EXC EPTION, | |
| 129 | ||
| 130 | // / <remarks /> | |
| 131 | NO TE_NOT_SAV ED_EXCEPTI ON, | |
| 132 | ||
| 133 | // / <remarks /> | |
| 134 | NO TE_INVALID _SIGNATURE _PERMISSIO N_EXCEPTIO N, | |
| 135 | ||
| 136 | // / <remarks /> | |
| 137 | NO TE_USER_NO T_AUTHORIZ ED_EXCEPTI ON, | |
| 138 | ||
| 139 | // / <remarks /> | |
| 140 | NO TE_INVALID _SIGNATURE _EXCEPTION , | |
| 141 | ||
| 142 | // / <remarks /> | |
| 143 | NO TE_CANNOT_ UNLOCK_CON SULT, | |
| 144 | ||
| 145 | // / <remarks /> | |
| 146 | NO TE_UNABLE_ TO_CREATE_ NOTE, | |
| 147 | ||
| 148 | // / <remarks /> | |
| 149 | NO TE_UNABLE_ TO_LOCK_NO TE, | |
| 150 | ||
| 151 | // / <remarks /> | |
| 152 | NO TE_UNABLE_ TO_LOCK_OR DER, | |
| 153 | ||
| 154 | // / <remarks /> | |
| 155 | NO TE_ERROR_U PDATING_NO TE, | |
| 156 | ||
| 157 | // / <remarks /> | |
| 158 | NO TE_ERROR_C LOSING_NOT E, | |
| 159 | ||
| 160 | // / <remarks /> | |
| 161 | NO TE_UNABLE_ TO_SET_NOT E_TEXT, | |
| 162 | ||
| 163 | // / <remarks /> | |
| 164 | NO TE_INDEX_O UT_OF_BOUN DS, | |
| 165 | ||
| 166 | // / <remarks /> | |
| 167 | NO TE_UNABLE_ TO_LINK_PR F_NOTE, | |
| 168 | ||
| 169 | // / <remarks /> | |
| 170 | NO TE_UNABLE_ TO_LINK_PR F_NOTE_REA SON, | |
| 171 | ||
| 172 | // / <remarks /> | |
| 173 | NO TE_UNABLE_ TO_UNLOCK_ NOTE, | |
| 174 | ||
| 175 | // / <remarks /> | |
| 176 | NO TE_CANNOT_ CREATE_SUR GERY_NOTE, | |
| 177 | ||
| 178 | // / <remarks /> | |
| 179 | NO TE_ONE_PER _VISIT, | |
| 180 | ||
| 181 | // / <remarks /> | |
| 182 | NO TE_MISSING _CONSULT_I EN, | |
| 183 | ||
| 184 | // / <remarks /> | |
| 185 | NO TE_MISSING _PRF_IEN, | |
| 186 | ||
| 187 | // / <remarks /> | |
| 188 | NO TE_MISSING _COSIGNER, | |
| 189 | ||
| 190 | // / <remarks /> | |
| 191 | MI SSING_ADT_ PATIENT, | |
| 192 | ||
| 193 | // / <remarks /> | |
| 194 | WO RK_EXCEPTI ON, | |
| 195 | ||
| 196 | // / <remarks /> | |
| 197 | WO RK_EXCEPTI ON_WITH_CL IENT_MESSA GES, | |
| 198 | ||
| 199 | // / <remarks /> | |
| 200 | RE AD_WORK_EX CEPTION_WI TH_CLIENT_ MESSAGES, | |
| 201 | ||
| 202 | // / <remarks /> | |
| 203 | RE AD_WORK_EX CEPTION_WI TH_CLIENT_ MESSAGES_F OR_DUZEXCE PTION, | |
| 204 | ||
| 205 | // / <remarks /> | |
| 206 | RE AD_WORK_EX CEPTION_WI TH_CLIENT_ MESSAGES_F OR_EXCEPTI ON, | |
| 207 | ||
| 208 | // / <remarks /> | |
| 209 | LO GIN_UNABLE _TO_DETERM INE_PROVID ER_DUZ, | |
| 210 | ||
| 211 | // / <remarks /> | |
| 212 | LO GIN_UNABLE _TO_GET_US ER_INFO, | |
| 213 | ||
| 214 | // / <remarks /> | |
| 215 | LO GIN_NO_USE R_ID_FOR_S ITE, | |
| 216 | ||
| 217 | // / <remarks /> | |
| 218 | LO GIN_UNABLE _TO_GET_US ER_SSN, | |
| 219 | ||
| 220 | // / <remarks /> | |
| 221 | DA O_EXCEPTIO N_MISSING_ ICN, | |
| 222 | ||
| 223 | // / <remarks /> | |
| 224 | DA O_EXCEPTIO N_UNFOUND_ DFN, | |
| 225 | ||
| 226 | // / <remarks /> | |
| 227 | DA O_EXCEPTIO N_MISSING_ DFN, | |
| 228 | ||
| 229 | // / <remarks /> | |
| 230 | DA O_EXCEPTIO N_MISSING_ PATIENT, | |
| 231 | ||
| 232 | // / <remarks /> | |
| 233 | DA O_EXCEPTIO N_UNFOUND_ LRDFN, | |
| 234 | ||
| 235 | // / <remarks /> | |
| 236 | VA LIDATION_E XCEPTION, | |
| 237 | ||
| 238 | // / <remarks /> | |
| 239 | SE CURITY_EXC EPTION, | |
| 240 | } | |
| 241 | ||
| 242 | /// <r emarks/> | |
| 243 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 244 | [Syste m.Serializ ableAttrib ute()] | |
| 245 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 246 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 247 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 248 | public partial c lass divis ion : obje ct, System .Component Model.INot ifyPropert yChanged { | |
| 249 | ||
| 250 | pr ivate stri ng nameFie ld; | |
| 251 | ||
| 252 | pr ivate stri ng siteIdF ield; | |
| 253 | ||
| 254 | // / <remarks /> | |
| 255 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 256 | pu blic strin g name { | |
| 257 | get { | |
| 258 | retu rn this.na meField; | |
| 259 | } | |
| 260 | set { | |
| 261 | this .nameField = value; | |
| 262 | this .RaiseProp ertyChange d("name"); | |
| 263 | } | |
| 264 | } | |
| 265 | ||
| 266 | // / <remarks /> | |
| 267 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 1)] | |
| 268 | pu blic strin g siteId { | |
| 269 | get { | |
| 270 | retu rn this.si teIdField; | |
| 271 | } | |
| 272 | set { | |
| 273 | this .siteIdFie ld = value ; | |
| 274 | this .RaiseProp ertyChange d("siteId" ); | |
| 275 | } | |
| 276 | } | |
| 277 | ||
| 278 | pu blic event System.Co mponentMod el.Propert yChangedEv entHandler PropertyC hanged; | |
| 279 | ||
| 280 | pr otected vo id RaisePr opertyChan ged(string propertyN ame) { | |
| 281 | System.C omponentMo del.Proper tyChangedE ventHandle r property Changed = this.Prope rtyChanged ; | |
| 282 | if ((pro pertyChang ed != null )) { | |
| 283 | prop ertyChange d(this, ne w System.C omponentMo del.Proper tyChangedE ventArgs(p ropertyNam e)); | |
| 284 | } | |
| 285 | } | |
| 286 | } | |
| 287 | ||
| 288 | /// <r emarks/> | |
| 289 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 290 | [Syste m.Serializ ableAttrib ute()] | |
| 291 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 292 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 293 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 294 | public partial c lass team : object, System.Com ponentMode l.INotifyP ropertyCha nged { | |
| 295 | ||
| 296 | pr ivate stri ng attendi ngNameFiel d; | |
| 297 | ||
| 298 | pr ivate stri ng idField ; | |
| 299 | ||
| 300 | pr ivate stri ng nameFie ld; | |
| 301 | ||
| 302 | pr ivate stri ng pcpName Field; | |
| 303 | ||
| 304 | // / <remarks /> | |
| 305 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 306 | pu blic strin g attendin gName { | |
| 307 | get { | |
| 308 | retu rn this.at tendingNam eField; | |
| 309 | } | |
| 310 | set { | |
| 311 | this .attending NameField = value; | |
| 312 | this .RaiseProp ertyChange d("attendi ngName"); | |
| 313 | } | |
| 314 | } | |
| 315 | ||
| 316 | // / <remarks /> | |
| 317 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 1)] | |
| 318 | pu blic strin g id { | |
| 319 | get { | |
| 320 | retu rn this.id Field; | |
| 321 | } | |
| 322 | set { | |
| 323 | this .idField = value; | |
| 324 | this .RaiseProp ertyChange d("id"); | |
| 325 | } | |
| 326 | } | |
| 327 | ||
| 328 | // / <remarks /> | |
| 329 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 2)] | |
| 330 | pu blic strin g name { | |
| 331 | get { | |
| 332 | retu rn this.na meField; | |
| 333 | } | |
| 334 | set { | |
| 335 | this .nameField = value; | |
| 336 | this .RaiseProp ertyChange d("name"); | |
| 337 | } | |
| 338 | } | |
| 339 | ||
| 340 | // / <remarks /> | |
| 341 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 3)] | |
| 342 | pu blic strin g pcpName { | |
| 343 | get { | |
| 344 | retu rn this.pc pNameField ; | |
| 345 | } | |
| 346 | set { | |
| 347 | this .pcpNameFi eld = valu e; | |
| 348 | this .RaiseProp ertyChange d("pcpName "); | |
| 349 | } | |
| 350 | } | |
| 351 | ||
| 352 | pu blic event System.Co mponentMod el.Propert yChangedEv entHandler PropertyC hanged; | |
| 353 | ||
| 354 | pr otected vo id RaisePr opertyChan ged(string propertyN ame) { | |
| 355 | System.C omponentMo del.Proper tyChangedE ventHandle r property Changed = this.Prope rtyChanged ; | |
| 356 | if ((pro pertyChang ed != null )) { | |
| 357 | prop ertyChange d(this, ne w System.C omponentMo del.Proper tyChangedE ventArgs(p ropertyNam e)); | |
| 358 | } | |
| 359 | } | |
| 360 | } | |
| 361 | ||
| 362 | /// <r emarks/> | |
| 363 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 364 | [Syste m.Serializ ableAttrib ute()] | |
| 365 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 366 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 367 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 368 | public partial c lass demog raphicSetT O : object , System.C omponentMo del.INotif yPropertyC hanged { | |
| 369 | ||
| 370 | pr ivate stri ng tagFiel d; | |
| 371 | ||
| 372 | pr ivate addr essTO[] ad dressesFie ld; | |
| 373 | ||
| 374 | pr ivate phon eNumTO[] p honesField ; | |
| 375 | ||
| 376 | pr ivate stri ng[] email AddressesF ield; | |
| 377 | ||
| 378 | pr ivate stri ng[] demog raphicName sField; | |
| 379 | ||
| 380 | // / <remarks /> | |
| 381 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 382 | pu blic strin g tag { | |
| 383 | get { | |
| 384 | retu rn this.ta gField; | |
| 385 | } | |
| 386 | set { | |
| 387 | this .tagField = value; | |
| 388 | this .RaiseProp ertyChange d("tag"); | |
| 389 | } | |
| 390 | } | |
| 391 | ||
| 392 | // / <remarks /> | |
| 393 | [S ystem.Xml. Serializat ion.XmlArr ayAttribut e(Form=Sys tem.Xml.Sc hema.XmlSc hemaForm.U nqualified , Order=1) ] | |
| 394 | [S ystem.Xml. Serializat ion.XmlArr ayItemAttr ibute(Form =System.Xm l.Schema.X mlSchemaFo rm.Unquali fied, IsNu llable=fal se)] | |
| 395 | pu blic addre ssTO[] add resses { | |
| 396 | get { | |
| 397 | retu rn this.ad dressesFie ld; | |
| 398 | } | |
| 399 | set { | |
| 400 | this .addresses Field = va lue; | |
| 401 | this .RaiseProp ertyChange d("address es"); | |
| 402 | } | |
| 403 | } | |
| 404 | ||
| 405 | // / <remarks /> | |
| 406 | [S ystem.Xml. Serializat ion.XmlArr ayAttribut e(Form=Sys tem.Xml.Sc hema.XmlSc hemaForm.U nqualified , Order=2) ] | |
| 407 | [S ystem.Xml. Serializat ion.XmlArr ayItemAttr ibute(Form =System.Xm l.Schema.X mlSchemaFo rm.Unquali fied, IsNu llable=fal se)] | |
| 408 | pu blic phone NumTO[] ph ones { | |
| 409 | get { | |
| 410 | retu rn this.ph onesField; | |
| 411 | } | |
| 412 | set { | |
| 413 | this .phonesFie ld = value ; | |
| 414 | this .RaiseProp ertyChange d("phones" ); | |
| 415 | } | |
| 416 | } | |
| 417 | ||
| 418 | // / <remarks /> | |
| 419 | [S ystem.Xml. Serializat ion.XmlArr ayAttribut e(Form=Sys tem.Xml.Sc hema.XmlSc hemaForm.U nqualified , Order=3) ] | |
| 420 | [S ystem.Xml. Serializat ion.XmlArr ayItemAttr ibute(Form =System.Xm l.Schema.X mlSchemaFo rm.Unquali fied, IsNu llable=fal se)] | |
| 421 | pu blic strin g[] emailA ddresses { | |
| 422 | get { | |
| 423 | retu rn this.em ailAddress esField; | |
| 424 | } | |
| 425 | set { | |
| 426 | this .emailAddr essesField = value; | |
| 427 | this .RaiseProp ertyChange d("emailAd dresses"); | |
| 428 | } | |
| 429 | } | |
| 430 | ||
| 431 | // / <remarks /> | |
| 432 | [S ystem.Xml. Serializat ion.XmlArr ayAttribut e(Form=Sys tem.Xml.Sc hema.XmlSc hemaForm.U nqualified , Order=4) ] | |
| 433 | [S ystem.Xml. Serializat ion.XmlArr ayItemAttr ibute("nam es", Form= System.Xml .Schema.Xm lSchemaFor m.Unqualif ied, IsNul lable=fals e)] | |
| 434 | pu blic strin g[] demogr aphicNames { | |
| 435 | get { | |
| 436 | retu rn this.de mographicN amesField; | |
| 437 | } | |
| 438 | set { | |
| 439 | this .demograph icNamesFie ld = value ; | |
| 440 | this .RaiseProp ertyChange d("demogra phicNames" ); | |
| 441 | } | |
| 442 | } | |
| 443 | ||
| 444 | pu blic event System.Co mponentMod el.Propert yChangedEv entHandler PropertyC hanged; | |
| 445 | ||
| 446 | pr otected vo id RaisePr opertyChan ged(string propertyN ame) { | |
| 447 | System.C omponentMo del.Proper tyChangedE ventHandle r property Changed = this.Prope rtyChanged ; | |
| 448 | if ((pro pertyChang ed != null )) { | |
| 449 | prop ertyChange d(this, ne w System.C omponentMo del.Proper tyChangedE ventArgs(p ropertyNam e)); | |
| 450 | } | |
| 451 | } | |
| 452 | } | |
| 453 | ||
| 454 | /// <r emarks/> | |
| 455 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 456 | [Syste m.Serializ ableAttrib ute()] | |
| 457 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 458 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 459 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 460 | public partial c lass addre ssTO : abs tractTO { | |
| 461 | ||
| 462 | pr ivate stri ng typeFie ld; | |
| 463 | ||
| 464 | pr ivate stri ng streetA ddress1Fie ld; | |
| 465 | ||
| 466 | pr ivate stri ng streetA ddress2Fie ld; | |
| 467 | ||
| 468 | pr ivate stri ng streetA ddress3Fie ld; | |
| 469 | ||
| 470 | pr ivate stri ng cityFie ld; | |
| 471 | ||
| 472 | pr ivate stri ng countyF ield; | |
| 473 | ||
| 474 | pr ivate stri ng stateFi eld; | |
| 475 | ||
| 476 | pr ivate stri ng zipcode Field; | |
| 477 | ||
| 478 | pr ivate stri ng country Field; | |
| 479 | ||
| 480 | // / <remarks /> | |
| 481 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 482 | pu blic strin g type { | |
| 483 | get { | |
| 484 | retu rn this.ty peField; | |
| 485 | } | |
| 486 | set { | |
| 487 | this .typeField = value; | |
| 488 | this .RaiseProp ertyChange d("type"); | |
| 489 | } | |
| 490 | } | |
| 491 | ||
| 492 | // / <remarks /> | |
| 493 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 1)] | |
| 494 | pu blic strin g streetAd dress1 { | |
| 495 | get { | |
| 496 | retu rn this.st reetAddres s1Field; | |
| 497 | } | |
| 498 | set { | |
| 499 | this .streetAdd ress1Field = value; | |
| 500 | this .RaiseProp ertyChange d("streetA ddress1"); | |
| 501 | } | |
| 502 | } | |
| 503 | ||
| 504 | // / <remarks /> | |
| 505 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 2)] | |
| 506 | pu blic strin g streetAd dress2 { | |
| 507 | get { | |
| 508 | retu rn this.st reetAddres s2Field; | |
| 509 | } | |
| 510 | set { | |
| 511 | this .streetAdd ress2Field = value; | |
| 512 | this .RaiseProp ertyChange d("streetA ddress2"); | |
| 513 | } | |
| 514 | } | |
| 515 | ||
| 516 | // / <remarks /> | |
| 517 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 3)] | |
| 518 | pu blic strin g streetAd dress3 { | |
| 519 | get { | |
| 520 | retu rn this.st reetAddres s3Field; | |
| 521 | } | |
| 522 | set { | |
| 523 | this .streetAdd ress3Field = value; | |
| 524 | this .RaiseProp ertyChange d("streetA ddress3"); | |
| 525 | } | |
| 526 | } | |
| 527 | ||
| 528 | // / <remarks /> | |
| 529 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 4)] | |
| 530 | pu blic strin g city { | |
| 531 | get { | |
| 532 | retu rn this.ci tyField; | |
| 533 | } | |
| 534 | set { | |
| 535 | this .cityField = value; | |
| 536 | this .RaiseProp ertyChange d("city"); | |
| 537 | } | |
| 538 | } | |
| 539 | ||
| 540 | // / <remarks /> | |
| 541 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 5)] | |
| 542 | pu blic strin g county { | |
| 543 | get { | |
| 544 | retu rn this.co untyField; | |
| 545 | } | |
| 546 | set { | |
| 547 | this .countyFie ld = value ; | |
| 548 | this .RaiseProp ertyChange d("county" ); | |
| 549 | } | |
| 550 | } | |
| 551 | ||
| 552 | // / <remarks /> | |
| 553 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 6)] | |
| 554 | pu blic strin g state { | |
| 555 | get { | |
| 556 | retu rn this.st ateField; | |
| 557 | } | |
| 558 | set { | |
| 559 | this .stateFiel d = value; | |
| 560 | this .RaiseProp ertyChange d("state") ; | |
| 561 | } | |
| 562 | } | |
| 563 | ||
| 564 | // / <remarks /> | |
| 565 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 7)] | |
| 566 | pu blic strin g zipcode { | |
| 567 | get { | |
| 568 | retu rn this.zi pcodeField ; | |
| 569 | } | |
| 570 | set { | |
| 571 | this .zipcodeFi eld = valu e; | |
| 572 | this .RaiseProp ertyChange d("zipcode "); | |
| 573 | } | |
| 574 | } | |
| 575 | ||
| 576 | // / <remarks /> | |
| 577 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 8)] | |
| 578 | pu blic strin g country { | |
| 579 | get { | |
| 580 | retu rn this.co untryField ; | |
| 581 | } | |
| 582 | set { | |
| 583 | this .countryFi eld = valu e; | |
| 584 | this .RaiseProp ertyChange d("country "); | |
| 585 | } | |
| 586 | } | |
| 587 | } | |
| 588 | ||
| 589 | /// <r emarks/> | |
| 590 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(use rTO))] | |
| 591 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(tex tTO))] | |
| 592 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(lab SiteSpecim enTO))] | |
| 593 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(lab ReportData TO))] | |
| 594 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(tim eSlotTO))] | |
| 595 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(dat aSourceTO) )] | |
| 596 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(sit eTO))] | |
| 597 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(hos pitalLocat ionTO))] | |
| 598 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(pho neNumTO))] | |
| 599 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(add ressTO))] | |
| 600 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(per sonTO))] | |
| 601 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(pat ientTO))] | |
| 602 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(tag gedText))] | |
| 603 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(abs tractArray TO))] | |
| 604 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(lab ReportData Array))] | |
| 605 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(abs tractTagge dArrayTO)) ] | |
| 606 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(tim eSlotArray ))] | |
| 607 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(sit eArray))] | |
| 608 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(dat aSourceArr ay))] | |
| 609 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(per sonArray)) ] | |
| 610 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(tag gedTextArr ay))] | |
| 611 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(tex tArray))] | |
| 612 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 613 | [Syste m.Serializ ableAttrib ute()] | |
| 614 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 615 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 616 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 617 | public abstract partial cl ass abstra ctTO : obj ect, Syste m.Componen tModel.INo tifyProper tyChanged { | |
| 618 | ||
| 619 | pr ivate faul tTO faultF ield; | |
| 620 | ||
| 621 | // / <remarks /> | |
| 622 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 623 | pu blic fault TO fault { | |
| 624 | get { | |
| 625 | retu rn this.fa ultField; | |
| 626 | } | |
| 627 | set { | |
| 628 | this .faultFiel d = value; | |
| 629 | this .RaiseProp ertyChange d("fault") ; | |
| 630 | } | |
| 631 | } | |
| 632 | ||
| 633 | pu blic event System.Co mponentMod el.Propert yChangedEv entHandler PropertyC hanged; | |
| 634 | ||
| 635 | pr otected vo id RaisePr opertyChan ged(string propertyN ame) { | |
| 636 | System.C omponentMo del.Proper tyChangedE ventHandle r property Changed = this.Prope rtyChanged ; | |
| 637 | if ((pro pertyChang ed != null )) { | |
| 638 | prop ertyChange d(this, ne w System.C omponentMo del.Proper tyChangedE ventArgs(p ropertyNam e)); | |
| 639 | } | |
| 640 | } | |
| 641 | } | |
| 642 | ||
| 643 | /// <r emarks/> | |
| 644 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 645 | [Syste m.Serializ ableAttrib ute()] | |
| 646 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 647 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 648 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 649 | public partial c lass fault TO : objec t, System. ComponentM odel.INoti fyProperty Changed { | |
| 650 | ||
| 651 | pr ivate stri ng innerMe ssageField ; | |
| 652 | ||
| 653 | pr ivate stri ng innerSt ackTraceFi eld; | |
| 654 | ||
| 655 | pr ivate stri ng innerTy peField; | |
| 656 | ||
| 657 | pr ivate stri ng message Field; | |
| 658 | ||
| 659 | pr ivate stri ng stackTr aceField; | |
| 660 | ||
| 661 | pr ivate stri ng suggest ionField; | |
| 662 | ||
| 663 | pr ivate stri ng typeFie ld; | |
| 664 | ||
| 665 | // / <remarks /> | |
| 666 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 667 | pu blic strin g innerMes sage { | |
| 668 | get { | |
| 669 | retu rn this.in nerMessage Field; | |
| 670 | } | |
| 671 | set { | |
| 672 | this .innerMess ageField = value; | |
| 673 | this .RaiseProp ertyChange d("innerMe ssage"); | |
| 674 | } | |
| 675 | } | |
| 676 | ||
| 677 | // / <remarks /> | |
| 678 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 1)] | |
| 679 | pu blic strin g innerSta ckTrace { | |
| 680 | get { | |
| 681 | retu rn this.in nerStackTr aceField; | |
| 682 | } | |
| 683 | set { | |
| 684 | this .innerStac kTraceFiel d = value; | |
| 685 | this .RaiseProp ertyChange d("innerSt ackTrace") ; | |
| 686 | } | |
| 687 | } | |
| 688 | ||
| 689 | // / <remarks /> | |
| 690 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 2)] | |
| 691 | pu blic strin g innerTyp e { | |
| 692 | get { | |
| 693 | retu rn this.in nerTypeFie ld; | |
| 694 | } | |
| 695 | set { | |
| 696 | this .innerType Field = va lue; | |
| 697 | this .RaiseProp ertyChange d("innerTy pe"); | |
| 698 | } | |
| 699 | } | |
| 700 | ||
| 701 | // / <remarks /> | |
| 702 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 3)] | |
| 703 | pu blic strin g message { | |
| 704 | get { | |
| 705 | retu rn this.me ssageField ; | |
| 706 | } | |
| 707 | set { | |
| 708 | this .messageFi eld = valu e; | |
| 709 | this .RaiseProp ertyChange d("message "); | |
| 710 | } | |
| 711 | } | |
| 712 | ||
| 713 | // / <remarks /> | |
| 714 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 4)] | |
| 715 | pu blic strin g stackTra ce { | |
| 716 | get { | |
| 717 | retu rn this.st ackTraceFi eld; | |
| 718 | } | |
| 719 | set { | |
| 720 | this .stackTrac eField = v alue; | |
| 721 | this .RaiseProp ertyChange d("stackTr ace"); | |
| 722 | } | |
| 723 | } | |
| 724 | ||
| 725 | // / <remarks /> | |
| 726 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 5)] | |
| 727 | pu blic strin g suggesti on { | |
| 728 | get { | |
| 729 | retu rn this.su ggestionFi eld; | |
| 730 | } | |
| 731 | set { | |
| 732 | this .suggestio nField = v alue; | |
| 733 | this .RaiseProp ertyChange d("suggest ion"); | |
| 734 | } | |
| 735 | } | |
| 736 | ||
| 737 | // / <remarks /> | |
| 738 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 6)] | |
| 739 | pu blic strin g type { | |
| 740 | get { | |
| 741 | retu rn this.ty peField; | |
| 742 | } | |
| 743 | set { | |
| 744 | this .typeField = value; | |
| 745 | this .RaiseProp ertyChange d("type"); | |
| 746 | } | |
| 747 | } | |
| 748 | ||
| 749 | pu blic event System.Co mponentMod el.Propert yChangedEv entHandler PropertyC hanged; | |
| 750 | ||
| 751 | pr otected vo id RaisePr opertyChan ged(string propertyN ame) { | |
| 752 | System.C omponentMo del.Proper tyChangedE ventHandle r property Changed = this.Prope rtyChanged ; | |
| 753 | if ((pro pertyChang ed != null )) { | |
| 754 | prop ertyChange d(this, ne w System.C omponentMo del.Proper tyChangedE ventArgs(p ropertyNam e)); | |
| 755 | } | |
| 756 | } | |
| 757 | } | |
| 758 | ||
| 759 | /// <r emarks/> | |
| 760 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 761 | [Syste m.Serializ ableAttrib ute()] | |
| 762 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 763 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 764 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 765 | public partial c lass userT O : abstra ctTO { | |
| 766 | ||
| 767 | pr ivate stri ng nameFie ld; | |
| 768 | ||
| 769 | pr ivate stri ng sSNFiel d; | |
| 770 | ||
| 771 | pr ivate stri ng dUZFiel d; | |
| 772 | ||
| 773 | pr ivate stri ng siteIdF ield; | |
| 774 | ||
| 775 | pr ivate stri ng officeF ield; | |
| 776 | ||
| 777 | pr ivate stri ng phoneFi eld; | |
| 778 | ||
| 779 | pr ivate stri ng pagerFi eld; | |
| 780 | ||
| 781 | pr ivate stri ng service Field; | |
| 782 | ||
| 783 | pr ivate stri ng titleFi eld; | |
| 784 | ||
| 785 | pr ivate stri ng orderRo leField; | |
| 786 | ||
| 787 | pr ivate stri ng userCla ssField; | |
| 788 | ||
| 789 | pr ivate stri ng greetin gField; | |
| 790 | ||
| 791 | pr ivate stri ng siteMes sageField; | |
| 792 | ||
| 793 | pr ivate tagg edTextArra y idsField ; | |
| 794 | ||
| 795 | pr ivate stri ng emailAd dressField ; | |
| 796 | ||
| 797 | pr ivate stri ng usernam eField; | |
| 798 | ||
| 799 | pr ivate stri ng vistaDU ZField; | |
| 800 | ||
| 801 | pr ivate divi sion[] div isionsFiel d; | |
| 802 | ||
| 803 | // / <remarks /> | |
| 804 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 805 | pu blic strin g name { | |
| 806 | get { | |
| 807 | retu rn this.na meField; | |
| 808 | } | |
| 809 | set { | |
| 810 | this .nameField = value; | |
| 811 | this .RaiseProp ertyChange d("name"); | |
| 812 | } | |
| 813 | } | |
| 814 | ||
| 815 | // / <remarks /> | |
| 816 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 1)] | |
| 817 | pu blic strin g SSN { | |
| 818 | get { | |
| 819 | retu rn this.sS NField; | |
| 820 | } | |
| 821 | set { | |
| 822 | this .sSNField = value; | |
| 823 | this .RaiseProp ertyChange d("SSN"); | |
| 824 | } | |
| 825 | } | |
| 826 | ||
| 827 | // / <remarks /> | |
| 828 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 2)] | |
| 829 | pu blic strin g DUZ { | |
| 830 | get { | |
| 831 | retu rn this.dU ZField; | |
| 832 | } | |
| 833 | set { | |
| 834 | this .dUZField = value; | |
| 835 | this .RaiseProp ertyChange d("DUZ"); | |
| 836 | } | |
| 837 | } | |
| 838 | ||
| 839 | // / <remarks /> | |
| 840 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 3)] | |
| 841 | pu blic strin g siteId { | |
| 842 | get { | |
| 843 | retu rn this.si teIdField; | |
| 844 | } | |
| 845 | set { | |
| 846 | this .siteIdFie ld = value ; | |
| 847 | this .RaiseProp ertyChange d("siteId" ); | |
| 848 | } | |
| 849 | } | |
| 850 | ||
| 851 | // / <remarks /> | |
| 852 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 4)] | |
| 853 | pu blic strin g office { | |
| 854 | get { | |
| 855 | retu rn this.of ficeField; | |
| 856 | } | |
| 857 | set { | |
| 858 | this .officeFie ld = value ; | |
| 859 | this .RaiseProp ertyChange d("office" ); | |
| 860 | } | |
| 861 | } | |
| 862 | ||
| 863 | // / <remarks /> | |
| 864 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 5)] | |
| 865 | pu blic strin g phone { | |
| 866 | get { | |
| 867 | retu rn this.ph oneField; | |
| 868 | } | |
| 869 | set { | |
| 870 | this .phoneFiel d = value; | |
| 871 | this .RaiseProp ertyChange d("phone") ; | |
| 872 | } | |
| 873 | } | |
| 874 | ||
| 875 | // / <remarks /> | |
| 876 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 6)] | |
| 877 | pu blic strin g pager { | |
| 878 | get { | |
| 879 | retu rn this.pa gerField; | |
| 880 | } | |
| 881 | set { | |
| 882 | this .pagerFiel d = value; | |
| 883 | this .RaiseProp ertyChange d("pager") ; | |
| 884 | } | |
| 885 | } | |
| 886 | ||
| 887 | // / <remarks /> | |
| 888 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 7)] | |
| 889 | pu blic strin g service { | |
| 890 | get { | |
| 891 | retu rn this.se rviceField ; | |
| 892 | } | |
| 893 | set { | |
| 894 | this .serviceFi eld = valu e; | |
| 895 | this .RaiseProp ertyChange d("service "); | |
| 896 | } | |
| 897 | } | |
| 898 | ||
| 899 | // / <remarks /> | |
| 900 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 8)] | |
| 901 | pu blic strin g title { | |
| 902 | get { | |
| 903 | retu rn this.ti tleField; | |
| 904 | } | |
| 905 | set { | |
| 906 | this .titleFiel d = value; | |
| 907 | this .RaiseProp ertyChange d("title") ; | |
| 908 | } | |
| 909 | } | |
| 910 | ||
| 911 | // / <remarks /> | |
| 912 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 9)] | |
| 913 | pu blic strin g orderRol e { | |
| 914 | get { | |
| 915 | retu rn this.or derRoleFie ld; | |
| 916 | } | |
| 917 | set { | |
| 918 | this .orderRole Field = va lue; | |
| 919 | this .RaiseProp ertyChange d("orderRo le"); | |
| 920 | } | |
| 921 | } | |
| 922 | ||
| 923 | // / <remarks /> | |
| 924 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 10)] | |
| 925 | pu blic strin g userClas s { | |
| 926 | get { | |
| 927 | retu rn this.us erClassFie ld; | |
| 928 | } | |
| 929 | set { | |
| 930 | this .userClass Field = va lue; | |
| 931 | this .RaiseProp ertyChange d("userCla ss"); | |
| 932 | } | |
| 933 | } | |
| 934 | ||
| 935 | // / <remarks /> | |
| 936 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 11)] | |
| 937 | pu blic strin g greeting { | |
| 938 | get { | |
| 939 | retu rn this.gr eetingFiel d; | |
| 940 | } | |
| 941 | set { | |
| 942 | this .greetingF ield = val ue; | |
| 943 | this .RaiseProp ertyChange d("greetin g"); | |
| 944 | } | |
| 945 | } | |
| 946 | ||
| 947 | // / <remarks /> | |
| 948 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 12)] | |
| 949 | pu blic strin g siteMess age { | |
| 950 | get { | |
| 951 | retu rn this.si teMessageF ield; | |
| 952 | } | |
| 953 | set { | |
| 954 | this .siteMessa geField = value; | |
| 955 | this .RaiseProp ertyChange d("siteMes sage"); | |
| 956 | } | |
| 957 | } | |
| 958 | ||
| 959 | // / <remarks /> | |
| 960 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 13)] | |
| 961 | pu blic tagge dTextArray ids { | |
| 962 | get { | |
| 963 | retu rn this.id sField; | |
| 964 | } | |
| 965 | set { | |
| 966 | this .idsField = value; | |
| 967 | this .RaiseProp ertyChange d("ids"); | |
| 968 | } | |
| 969 | } | |
| 970 | ||
| 971 | // / <remarks /> | |
| 972 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 14)] | |
| 973 | pu blic strin g emailAdd ress { | |
| 974 | get { | |
| 975 | retu rn this.em ailAddress Field; | |
| 976 | } | |
| 977 | set { | |
| 978 | this .emailAddr essField = value; | |
| 979 | this .RaiseProp ertyChange d("emailAd dress"); | |
| 980 | } | |
| 981 | } | |
| 982 | ||
| 983 | // / <remarks /> | |
| 984 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 15)] | |
| 985 | pu blic strin g username { | |
| 986 | get { | |
| 987 | retu rn this.us ernameFiel d; | |
| 988 | } | |
| 989 | set { | |
| 990 | this .usernameF ield = val ue; | |
| 991 | this .RaiseProp ertyChange d("usernam e"); | |
| 992 | } | |
| 993 | } | |
| 994 | ||
| 995 | // / <remarks /> | |
| 996 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 16)] | |
| 997 | pu blic strin g vistaDUZ { | |
| 998 | get { | |
| 999 | retu rn this.vi staDUZFiel d; | |
| 1000 | } | |
| 1001 | set { | |
| 1002 | this .vistaDUZF ield = val ue; | |
| 1003 | this .RaiseProp ertyChange d("vistaDU Z"); | |
| 1004 | } | |
| 1005 | } | |
| 1006 | ||
| 1007 | // / <remarks /> | |
| 1008 | [S ystem.Xml. Serializat ion.XmlArr ayAttribut e(Form=Sys tem.Xml.Sc hema.XmlSc hemaForm.U nqualified , Order=17 )] | |
| 1009 | [S ystem.Xml. Serializat ion.XmlArr ayItemAttr ibute(Form =System.Xm l.Schema.X mlSchemaFo rm.Unquali fied, IsNu llable=fal se)] | |
| 1010 | pu blic divis ion[] divi sions { | |
| 1011 | get { | |
| 1012 | retu rn this.di visionsFie ld; | |
| 1013 | } | |
| 1014 | set { | |
| 1015 | this .divisions Field = va lue; | |
| 1016 | this .RaiseProp ertyChange d("divisio ns"); | |
| 1017 | } | |
| 1018 | } | |
| 1019 | } | |
| 1020 | ||
| 1021 | /// <r emarks/> | |
| 1022 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 1023 | [Syste m.Serializ ableAttrib ute()] | |
| 1024 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 1025 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 1026 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 1027 | public partial c lass tagge dTextArray : abstrac tArrayTO { | |
| 1028 | ||
| 1029 | pr ivate tagg edText[] r esultsFiel d; | |
| 1030 | ||
| 1031 | pr ivate bool textOnlyF ield; | |
| 1032 | ||
| 1033 | pr ivate bool textOnlyF ieldSpecif ied; | |
| 1034 | ||
| 1035 | // / <remarks /> | |
| 1036 | [S ystem.Xml. Serializat ion.XmlArr ayAttribut e(Form=Sys tem.Xml.Sc hema.XmlSc hemaForm.U nqualified , Order=0) ] | |
| 1037 | [S ystem.Xml. Serializat ion.XmlArr ayItemAttr ibute(Form =System.Xm l.Schema.X mlSchemaFo rm.Unquali fied, IsNu llable=fal se)] | |
| 1038 | pu blic tagge dText[] re sults { | |
| 1039 | get { | |
| 1040 | retu rn this.re sultsField ; | |
| 1041 | } | |
| 1042 | set { | |
| 1043 | this .resultsFi eld = valu e; | |
| 1044 | this .RaiseProp ertyChange d("results "); | |
| 1045 | } | |
| 1046 | } | |
| 1047 | ||
| 1048 | // / <remarks /> | |
| 1049 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 1)] | |
| 1050 | pu blic bool textOnly { | |
| 1051 | get { | |
| 1052 | retu rn this.te xtOnlyFiel d; | |
| 1053 | } | |
| 1054 | set { | |
| 1055 | this .textOnlyF ield = val ue; | |
| 1056 | this .RaiseProp ertyChange d("textOnl y"); | |
| 1057 | } | |
| 1058 | } | |
| 1059 | ||
| 1060 | // / <remarks /> | |
| 1061 | [S ystem.Xml. Serializat ion.XmlIgn oreAttribu te()] | |
| 1062 | pu blic bool textOnlySp ecified { | |
| 1063 | get { | |
| 1064 | retu rn this.te xtOnlyFiel dSpecified ; | |
| 1065 | } | |
| 1066 | set { | |
| 1067 | this .textOnlyF ieldSpecif ied = valu e; | |
| 1068 | this .RaiseProp ertyChange d("textOnl ySpecified "); | |
| 1069 | } | |
| 1070 | } | |
| 1071 | } | |
| 1072 | ||
| 1073 | /// <r emarks/> | |
| 1074 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 1075 | [Syste m.Serializ ableAttrib ute()] | |
| 1076 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 1077 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 1078 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 1079 | public partial c lass tagge dText : ab stractTO { | |
| 1080 | ||
| 1081 | pr ivate stri ng tagFiel d; | |
| 1082 | ||
| 1083 | pr ivate stri ng textFie ld; | |
| 1084 | ||
| 1085 | pr ivate stri ng[] textA rrayField; | |
| 1086 | ||
| 1087 | pr ivate tagg edText[] t aggedResul tsField; | |
| 1088 | ||
| 1089 | // / <remarks /> | |
| 1090 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 1091 | pu blic strin g tag { | |
| 1092 | get { | |
| 1093 | retu rn this.ta gField; | |
| 1094 | } | |
| 1095 | set { | |
| 1096 | this .tagField = value; | |
| 1097 | this .RaiseProp ertyChange d("tag"); | |
| 1098 | } | |
| 1099 | } | |
| 1100 | ||
| 1101 | // / <remarks /> | |
| 1102 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 1)] | |
| 1103 | pu blic strin g text { | |
| 1104 | get { | |
| 1105 | retu rn this.te xtField; | |
| 1106 | } | |
| 1107 | set { | |
| 1108 | this .textField = value; | |
| 1109 | this .RaiseProp ertyChange d("text"); | |
| 1110 | } | |
| 1111 | } | |
| 1112 | ||
| 1113 | // / <remarks /> | |
| 1114 | [S ystem.Xml. Serializat ion.XmlArr ayAttribut e(Form=Sys tem.Xml.Sc hema.XmlSc hemaForm.U nqualified , Order=2) ] | |
| 1115 | [S ystem.Xml. Serializat ion.XmlArr ayItemAttr ibute("tex tArray", F orm=System .Xml.Schem a.XmlSchem aForm.Unqu alified, I sNullable= false)] | |
| 1116 | pu blic strin g[] textAr ray { | |
| 1117 | get { | |
| 1118 | retu rn this.te xtArrayFie ld; | |
| 1119 | } | |
| 1120 | set { | |
| 1121 | this .textArray Field = va lue; | |
| 1122 | this .RaiseProp ertyChange d("textArr ay"); | |
| 1123 | } | |
| 1124 | } | |
| 1125 | ||
| 1126 | // / <remarks /> | |
| 1127 | [S ystem.Xml. Serializat ion.XmlArr ayAttribut e(Form=Sys tem.Xml.Sc hema.XmlSc hemaForm.U nqualified , Order=3) ] | |
| 1128 | [S ystem.Xml. Serializat ion.XmlArr ayItemAttr ibute(Form =System.Xm l.Schema.X mlSchemaFo rm.Unquali fied, IsNu llable=fal se)] | |
| 1129 | pu blic tagge dText[] ta ggedResult s { | |
| 1130 | get { | |
| 1131 | retu rn this.ta ggedResult sField; | |
| 1132 | } | |
| 1133 | set { | |
| 1134 | this .taggedRes ultsField = value; | |
| 1135 | this .RaiseProp ertyChange d("taggedR esults"); | |
| 1136 | } | |
| 1137 | } | |
| 1138 | } | |
| 1139 | ||
| 1140 | /// <r emarks/> | |
| 1141 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(lab ReportData Array))] | |
| 1142 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(abs tractTagge dArrayTO)) ] | |
| 1143 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(tim eSlotArray ))] | |
| 1144 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(sit eArray))] | |
| 1145 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(dat aSourceArr ay))] | |
| 1146 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(per sonArray)) ] | |
| 1147 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(tag gedTextArr ay))] | |
| 1148 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(tex tArray))] | |
| 1149 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 1150 | [Syste m.Serializ ableAttrib ute()] | |
| 1151 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 1152 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 1153 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 1154 | public partial c lass abstr actArrayTO : abstrac tTO { | |
| 1155 | ||
| 1156 | pr ivate int countField ; | |
| 1157 | ||
| 1158 | pr ivate bool countFiel dSpecified ; | |
| 1159 | ||
| 1160 | // / <remarks /> | |
| 1161 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 1162 | pu blic int c ount { | |
| 1163 | get { | |
| 1164 | retu rn this.co untField; | |
| 1165 | } | |
| 1166 | set { | |
| 1167 | this .countFiel d = value; | |
| 1168 | this .RaiseProp ertyChange d("count") ; | |
| 1169 | } | |
| 1170 | } | |
| 1171 | ||
| 1172 | // / <remarks /> | |
| 1173 | [S ystem.Xml. Serializat ion.XmlIgn oreAttribu te()] | |
| 1174 | pu blic bool countSpeci fied { | |
| 1175 | get { | |
| 1176 | retu rn this.co untFieldSp ecified; | |
| 1177 | } | |
| 1178 | set { | |
| 1179 | this .countFiel dSpecified = value; | |
| 1180 | this .RaiseProp ertyChange d("countSp ecified"); | |
| 1181 | } | |
| 1182 | } | |
| 1183 | } | |
| 1184 | ||
| 1185 | /// <r emarks/> | |
| 1186 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 1187 | [Syste m.Serializ ableAttrib ute()] | |
| 1188 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 1189 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 1190 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 1191 | public partial c lass labRe portDataAr ray : abst ractArrayT O { | |
| 1192 | ||
| 1193 | pr ivate stri ng fromRec ordField; | |
| 1194 | ||
| 1195 | pr ivate labR eportDataT O[] labRep ortsField; | |
| 1196 | ||
| 1197 | // / <remarks /> | |
| 1198 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 1199 | pu blic strin g fromReco rd { | |
| 1200 | get { | |
| 1201 | retu rn this.fr omRecordFi eld; | |
| 1202 | } | |
| 1203 | set { | |
| 1204 | this .fromRecor dField = v alue; | |
| 1205 | this .RaiseProp ertyChange d("fromRec ord"); | |
| 1206 | } | |
| 1207 | } | |
| 1208 | ||
| 1209 | // / <remarks /> | |
| 1210 | [S ystem.Xml. Serializat ion.XmlArr ayAttribut e(Form=Sys tem.Xml.Sc hema.XmlSc hemaForm.U nqualified , Order=1) ] | |
| 1211 | [S ystem.Xml. Serializat ion.XmlArr ayItemAttr ibute("lab ReportData ", Form=Sy stem.Xml.S chema.XmlS chemaForm. Unqualifie d, IsNulla ble=false) ] | |
| 1212 | pu blic labRe portDataTO [] labRepo rts { | |
| 1213 | get { | |
| 1214 | retu rn this.la bReportsFi eld; | |
| 1215 | } | |
| 1216 | set { | |
| 1217 | this .labReport sField = v alue; | |
| 1218 | this .RaiseProp ertyChange d("labRepo rts"); | |
| 1219 | } | |
| 1220 | } | |
| 1221 | } | |
| 1222 | ||
| 1223 | /// <r emarks/> | |
| 1224 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 1225 | [Syste m.Serializ ableAttrib ute()] | |
| 1226 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 1227 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 1228 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 1229 | public partial c lass labRe portDataTO : abstrac tTO { | |
| 1230 | ||
| 1231 | pr ivate stri ng idField ; | |
| 1232 | ||
| 1233 | pr ivate stri ng nameFie ld; | |
| 1234 | ||
| 1235 | pr ivate stri ng subscri ptField; | |
| 1236 | ||
| 1237 | pr ivate stri ng locatio nField; | |
| 1238 | ||
| 1239 | pr ivate stri ng reserve dField; | |
| 1240 | ||
| 1241 | pr ivate stri ng printCo deField; | |
| 1242 | ||
| 1243 | pr ivate labS iteSpecime nTO[] spec imensField ; | |
| 1244 | ||
| 1245 | // / <remarks /> | |
| 1246 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 1247 | pu blic strin g id { | |
| 1248 | get { | |
| 1249 | retu rn this.id Field; | |
| 1250 | } | |
| 1251 | set { | |
| 1252 | this .idField = value; | |
| 1253 | this .RaiseProp ertyChange d("id"); | |
| 1254 | } | |
| 1255 | } | |
| 1256 | ||
| 1257 | // / <remarks /> | |
| 1258 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 1)] | |
| 1259 | pu blic strin g name { | |
| 1260 | get { | |
| 1261 | retu rn this.na meField; | |
| 1262 | } | |
| 1263 | set { | |
| 1264 | this .nameField = value; | |
| 1265 | this .RaiseProp ertyChange d("name"); | |
| 1266 | } | |
| 1267 | } | |
| 1268 | ||
| 1269 | // / <remarks /> | |
| 1270 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 2)] | |
| 1271 | pu blic strin g subscrip t { | |
| 1272 | get { | |
| 1273 | retu rn this.su bscriptFie ld; | |
| 1274 | } | |
| 1275 | set { | |
| 1276 | this .subscript Field = va lue; | |
| 1277 | this .RaiseProp ertyChange d("subscri pt"); | |
| 1278 | } | |
| 1279 | } | |
| 1280 | ||
| 1281 | // / <remarks /> | |
| 1282 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 3)] | |
| 1283 | pu blic strin g location { | |
| 1284 | get { | |
| 1285 | retu rn this.lo cationFiel d; | |
| 1286 | } | |
| 1287 | set { | |
| 1288 | this .locationF ield = val ue; | |
| 1289 | this .RaiseProp ertyChange d("locatio n"); | |
| 1290 | } | |
| 1291 | } | |
| 1292 | ||
| 1293 | // / <remarks /> | |
| 1294 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 4)] | |
| 1295 | pu blic strin g reserved { | |
| 1296 | get { | |
| 1297 | retu rn this.re servedFiel d; | |
| 1298 | } | |
| 1299 | set { | |
| 1300 | this .reservedF ield = val ue; | |
| 1301 | this .RaiseProp ertyChange d("reserve d"); | |
| 1302 | } | |
| 1303 | } | |
| 1304 | ||
| 1305 | // / <remarks /> | |
| 1306 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 5)] | |
| 1307 | pu blic strin g printCod e { | |
| 1308 | get { | |
| 1309 | retu rn this.pr intCodeFie ld; | |
| 1310 | } | |
| 1311 | set { | |
| 1312 | this .printCode Field = va lue; | |
| 1313 | this .RaiseProp ertyChange d("printCo de"); | |
| 1314 | } | |
| 1315 | } | |
| 1316 | ||
| 1317 | // / <remarks /> | |
| 1318 | [S ystem.Xml. Serializat ion.XmlArr ayAttribut e(Form=Sys tem.Xml.Sc hema.XmlSc hemaForm.U nqualified , Order=6) ] | |
| 1319 | [S ystem.Xml. Serializat ion.XmlArr ayItemAttr ibute(Form =System.Xm l.Schema.X mlSchemaFo rm.Unquali fied, IsNu llable=fal se)] | |
| 1320 | pu blic labSi teSpecimen TO[] speci mens { | |
| 1321 | get { | |
| 1322 | retu rn this.sp ecimensFie ld; | |
| 1323 | } | |
| 1324 | set { | |
| 1325 | this .specimens Field = va lue; | |
| 1326 | this .RaiseProp ertyChange d("specime ns"); | |
| 1327 | } | |
| 1328 | } | |
| 1329 | } | |
| 1330 | ||
| 1331 | /// <r emarks/> | |
| 1332 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 1333 | [Syste m.Serializ ableAttrib ute()] | |
| 1334 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 1335 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 1336 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 1337 | public partial c lass labSi teSpecimen TO : abstr actTO { | |
| 1338 | ||
| 1339 | pr ivate stri ng idField ; | |
| 1340 | ||
| 1341 | pr ivate stri ng siteSpe cimenField ; | |
| 1342 | ||
| 1343 | pr ivate stri ng unitsFi eld; | |
| 1344 | ||
| 1345 | // / <remarks /> | |
| 1346 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 1347 | pu blic strin g id { | |
| 1348 | get { | |
| 1349 | retu rn this.id Field; | |
| 1350 | } | |
| 1351 | set { | |
| 1352 | this .idField = value; | |
| 1353 | this .RaiseProp ertyChange d("id"); | |
| 1354 | } | |
| 1355 | } | |
| 1356 | ||
| 1357 | // / <remarks /> | |
| 1358 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 1)] | |
| 1359 | pu blic strin g siteSpec imen { | |
| 1360 | get { | |
| 1361 | retu rn this.si teSpecimen Field; | |
| 1362 | } | |
| 1363 | set { | |
| 1364 | this .siteSpeci menField = value; | |
| 1365 | this .RaiseProp ertyChange d("siteSpe cimen"); | |
| 1366 | } | |
| 1367 | } | |
| 1368 | ||
| 1369 | // / <remarks /> | |
| 1370 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 2)] | |
| 1371 | pu blic strin g units { | |
| 1372 | get { | |
| 1373 | retu rn this.un itsField; | |
| 1374 | } | |
| 1375 | set { | |
| 1376 | this .unitsFiel d = value; | |
| 1377 | this .RaiseProp ertyChange d("units") ; | |
| 1378 | } | |
| 1379 | } | |
| 1380 | } | |
| 1381 | ||
| 1382 | /// <r emarks/> | |
| 1383 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(tim eSlotArray ))] | |
| 1384 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 1385 | [Syste m.Serializ ableAttrib ute()] | |
| 1386 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 1387 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 1388 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 1389 | public partial c lass abstr actTaggedA rrayTO : a bstractArr ayTO { | |
| 1390 | ||
| 1391 | pr ivate stri ng tagFiel d; | |
| 1392 | ||
| 1393 | // / <remarks /> | |
| 1394 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 1395 | pu blic strin g tag { | |
| 1396 | get { | |
| 1397 | retu rn this.ta gField; | |
| 1398 | } | |
| 1399 | set { | |
| 1400 | this .tagField = value; | |
| 1401 | this .RaiseProp ertyChange d("tag"); | |
| 1402 | } | |
| 1403 | } | |
| 1404 | } | |
| 1405 | ||
| 1406 | /// <r emarks/> | |
| 1407 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 1408 | [Syste m.Serializ ableAttrib ute()] | |
| 1409 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 1410 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 1411 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 1412 | public partial c lass timeS lotArray : abstractT aggedArray TO { | |
| 1413 | ||
| 1414 | pr ivate time SlotTO[] s lotsField; | |
| 1415 | ||
| 1416 | // / <remarks /> | |
| 1417 | [S ystem.Xml. Serializat ion.XmlArr ayAttribut e(Form=Sys tem.Xml.Sc hema.XmlSc hemaForm.U nqualified , Order=0) ] | |
| 1418 | [S ystem.Xml. Serializat ion.XmlArr ayItemAttr ibute(Form =System.Xm l.Schema.X mlSchemaFo rm.Unquali fied, IsNu llable=fal se)] | |
| 1419 | pu blic timeS lotTO[] sl ots { | |
| 1420 | get { | |
| 1421 | retu rn this.sl otsField; | |
| 1422 | } | |
| 1423 | set { | |
| 1424 | this .slotsFiel d = value; | |
| 1425 | this .RaiseProp ertyChange d("slots") ; | |
| 1426 | } | |
| 1427 | } | |
| 1428 | } | |
| 1429 | ||
| 1430 | /// <r emarks/> | |
| 1431 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 1432 | [Syste m.Serializ ableAttrib ute()] | |
| 1433 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 1434 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 1435 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 1436 | public partial c lass timeS lotTO : ab stractTO { | |
| 1437 | ||
| 1438 | pr ivate stri ng startFi eld; | |
| 1439 | ||
| 1440 | pr ivate stri ng endFiel d; | |
| 1441 | ||
| 1442 | pr ivate stri ng textFie ld; | |
| 1443 | ||
| 1444 | pr ivate bool available Field; | |
| 1445 | ||
| 1446 | // / <remarks /> | |
| 1447 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 1448 | pu blic strin g start { | |
| 1449 | get { | |
| 1450 | retu rn this.st artField; | |
| 1451 | } | |
| 1452 | set { | |
| 1453 | this .startFiel d = value; | |
| 1454 | this .RaiseProp ertyChange d("start") ; | |
| 1455 | } | |
| 1456 | } | |
| 1457 | ||
| 1458 | // / <remarks /> | |
| 1459 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 1)] | |
| 1460 | pu blic strin g end { | |
| 1461 | get { | |
| 1462 | retu rn this.en dField; | |
| 1463 | } | |
| 1464 | set { | |
| 1465 | this .endField = value; | |
| 1466 | this .RaiseProp ertyChange d("end"); | |
| 1467 | } | |
| 1468 | } | |
| 1469 | ||
| 1470 | // / <remarks /> | |
| 1471 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 2)] | |
| 1472 | pu blic strin g text { | |
| 1473 | get { | |
| 1474 | retu rn this.te xtField; | |
| 1475 | } | |
| 1476 | set { | |
| 1477 | this .textField = value; | |
| 1478 | this .RaiseProp ertyChange d("text"); | |
| 1479 | } | |
| 1480 | } | |
| 1481 | ||
| 1482 | // / <remarks /> | |
| 1483 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 3)] | |
| 1484 | pu blic bool available { | |
| 1485 | get { | |
| 1486 | retu rn this.av ailableFie ld; | |
| 1487 | } | |
| 1488 | set { | |
| 1489 | this .available Field = va lue; | |
| 1490 | this .RaiseProp ertyChange d("availab le"); | |
| 1491 | } | |
| 1492 | } | |
| 1493 | } | |
| 1494 | ||
| 1495 | /// <r emarks/> | |
| 1496 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 1497 | [Syste m.Serializ ableAttrib ute()] | |
| 1498 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 1499 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 1500 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 1501 | public partial c lass siteA rray : abs tractArray TO { | |
| 1502 | ||
| 1503 | pr ivate site TO[] sites Field; | |
| 1504 | ||
| 1505 | // / <remarks /> | |
| 1506 | [S ystem.Xml. Serializat ion.XmlArr ayAttribut e(Form=Sys tem.Xml.Sc hema.XmlSc hemaForm.U nqualified , Order=0) ] | |
| 1507 | [S ystem.Xml. Serializat ion.XmlArr ayItemAttr ibute(Form =System.Xm l.Schema.X mlSchemaFo rm.Unquali fied, IsNu llable=fal se)] | |
| 1508 | pu blic siteT O[] sites { | |
| 1509 | get { | |
| 1510 | retu rn this.si tesField; | |
| 1511 | } | |
| 1512 | set { | |
| 1513 | this .sitesFiel d = value; | |
| 1514 | this .RaiseProp ertyChange d("sites") ; | |
| 1515 | } | |
| 1516 | } | |
| 1517 | } | |
| 1518 | ||
| 1519 | /// <r emarks/> | |
| 1520 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 1521 | [Syste m.Serializ ableAttrib ute()] | |
| 1522 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 1523 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 1524 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 1525 | public partial c lass siteT O : abstra ctTO { | |
| 1526 | ||
| 1527 | pr ivate stri ng sitecod eField; | |
| 1528 | ||
| 1529 | pr ivate stri ng nameFie ld; | |
| 1530 | ||
| 1531 | pr ivate stri ng display NameField; | |
| 1532 | ||
| 1533 | pr ivate stri ng moniker Field; | |
| 1534 | ||
| 1535 | pr ivate stri ng regionI DField; | |
| 1536 | ||
| 1537 | pr ivate stri ng lastEve ntTimestam pField; | |
| 1538 | ||
| 1539 | pr ivate stri ng lastEve ntReasonFi eld; | |
| 1540 | ||
| 1541 | pr ivate stri ng uidFiel d; | |
| 1542 | ||
| 1543 | pr ivate stri ng pidFiel d; | |
| 1544 | ||
| 1545 | pr ivate data SourceArra y dataSour cesField; | |
| 1546 | ||
| 1547 | pr ivate stri ng parentS iteIdField ; | |
| 1548 | ||
| 1549 | pr ivate site Array chil dSitesFiel d; | |
| 1550 | ||
| 1551 | pr ivate stri ng address Field; | |
| 1552 | ||
| 1553 | pr ivate stri ng cityFie ld; | |
| 1554 | ||
| 1555 | pr ivate stri ng stateFi eld; | |
| 1556 | ||
| 1557 | pr ivate stri ng systemN ameField; | |
| 1558 | ||
| 1559 | pr ivate stri ng siteTyp eField; | |
| 1560 | ||
| 1561 | // / <remarks /> | |
| 1562 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 1563 | pu blic strin g sitecode { | |
| 1564 | get { | |
| 1565 | retu rn this.si tecodeFiel d; | |
| 1566 | } | |
| 1567 | set { | |
| 1568 | this .sitecodeF ield = val ue; | |
| 1569 | this .RaiseProp ertyChange d("sitecod e"); | |
| 1570 | } | |
| 1571 | } | |
| 1572 | ||
| 1573 | // / <remarks /> | |
| 1574 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 1)] | |
| 1575 | pu blic strin g name { | |
| 1576 | get { | |
| 1577 | retu rn this.na meField; | |
| 1578 | } | |
| 1579 | set { | |
| 1580 | this .nameField = value; | |
| 1581 | this .RaiseProp ertyChange d("name"); | |
| 1582 | } | |
| 1583 | } | |
| 1584 | ||
| 1585 | // / <remarks /> | |
| 1586 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 2)] | |
| 1587 | pu blic strin g displayN ame { | |
| 1588 | get { | |
| 1589 | retu rn this.di splayNameF ield; | |
| 1590 | } | |
| 1591 | set { | |
| 1592 | this .displayNa meField = value; | |
| 1593 | this .RaiseProp ertyChange d("display Name"); | |
| 1594 | } | |
| 1595 | } | |
| 1596 | ||
| 1597 | // / <remarks /> | |
| 1598 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 3)] | |
| 1599 | pu blic strin g moniker { | |
| 1600 | get { | |
| 1601 | retu rn this.mo nikerField ; | |
| 1602 | } | |
| 1603 | set { | |
| 1604 | this .monikerFi eld = valu e; | |
| 1605 | this .RaiseProp ertyChange d("moniker "); | |
| 1606 | } | |
| 1607 | } | |
| 1608 | ||
| 1609 | // / <remarks /> | |
| 1610 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 4)] | |
| 1611 | pu blic strin g regionID { | |
| 1612 | get { | |
| 1613 | retu rn this.re gionIDFiel d; | |
| 1614 | } | |
| 1615 | set { | |
| 1616 | this .regionIDF ield = val ue; | |
| 1617 | this .RaiseProp ertyChange d("regionI D"); | |
| 1618 | } | |
| 1619 | } | |
| 1620 | ||
| 1621 | // / <remarks /> | |
| 1622 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 5)] | |
| 1623 | pu blic strin g lastEven tTimestamp { | |
| 1624 | get { | |
| 1625 | retu rn this.la stEventTim estampFiel d; | |
| 1626 | } | |
| 1627 | set { | |
| 1628 | this .lastEvent TimestampF ield = val ue; | |
| 1629 | this .RaiseProp ertyChange d("lastEve ntTimestam p"); | |
| 1630 | } | |
| 1631 | } | |
| 1632 | ||
| 1633 | // / <remarks /> | |
| 1634 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 6)] | |
| 1635 | pu blic strin g lastEven tReason { | |
| 1636 | get { | |
| 1637 | retu rn this.la stEventRea sonField; | |
| 1638 | } | |
| 1639 | set { | |
| 1640 | this .lastEvent ReasonFiel d = value; | |
| 1641 | this .RaiseProp ertyChange d("lastEve ntReason") ; | |
| 1642 | } | |
| 1643 | } | |
| 1644 | ||
| 1645 | // / <remarks /> | |
| 1646 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 7)] | |
| 1647 | pu blic strin g uid { | |
| 1648 | get { | |
| 1649 | retu rn this.ui dField; | |
| 1650 | } | |
| 1651 | set { | |
| 1652 | this .uidField = value; | |
| 1653 | this .RaiseProp ertyChange d("uid"); | |
| 1654 | } | |
| 1655 | } | |
| 1656 | ||
| 1657 | // / <remarks /> | |
| 1658 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 8)] | |
| 1659 | pu blic strin g pid { | |
| 1660 | get { | |
| 1661 | retu rn this.pi dField; | |
| 1662 | } | |
| 1663 | set { | |
| 1664 | this .pidField = value; | |
| 1665 | this .RaiseProp ertyChange d("pid"); | |
| 1666 | } | |
| 1667 | } | |
| 1668 | ||
| 1669 | // / <remarks /> | |
| 1670 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 9)] | |
| 1671 | pu blic dataS ourceArray dataSourc es { | |
| 1672 | get { | |
| 1673 | retu rn this.da taSourcesF ield; | |
| 1674 | } | |
| 1675 | set { | |
| 1676 | this .dataSourc esField = value; | |
| 1677 | this .RaiseProp ertyChange d("dataSou rces"); | |
| 1678 | } | |
| 1679 | } | |
| 1680 | ||
| 1681 | // / <remarks /> | |
| 1682 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 10)] | |
| 1683 | pu blic strin g parentSi teId { | |
| 1684 | get { | |
| 1685 | retu rn this.pa rentSiteId Field; | |
| 1686 | } | |
| 1687 | set { | |
| 1688 | this .parentSit eIdField = value; | |
| 1689 | this .RaiseProp ertyChange d("parentS iteId"); | |
| 1690 | } | |
| 1691 | } | |
| 1692 | ||
| 1693 | // / <remarks /> | |
| 1694 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 11)] | |
| 1695 | pu blic siteA rray child Sites { | |
| 1696 | get { | |
| 1697 | retu rn this.ch ildSitesFi eld; | |
| 1698 | } | |
| 1699 | set { | |
| 1700 | this .childSite sField = v alue; | |
| 1701 | this .RaiseProp ertyChange d("childSi tes"); | |
| 1702 | } | |
| 1703 | } | |
| 1704 | ||
| 1705 | // / <remarks /> | |
| 1706 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 12)] | |
| 1707 | pu blic strin g address { | |
| 1708 | get { | |
| 1709 | retu rn this.ad dressField ; | |
| 1710 | } | |
| 1711 | set { | |
| 1712 | this .addressFi eld = valu e; | |
| 1713 | this .RaiseProp ertyChange d("address "); | |
| 1714 | } | |
| 1715 | } | |
| 1716 | ||
| 1717 | // / <remarks /> | |
| 1718 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 13)] | |
| 1719 | pu blic strin g city { | |
| 1720 | get { | |
| 1721 | retu rn this.ci tyField; | |
| 1722 | } | |
| 1723 | set { | |
| 1724 | this .cityField = value; | |
| 1725 | this .RaiseProp ertyChange d("city"); | |
| 1726 | } | |
| 1727 | } | |
| 1728 | ||
| 1729 | // / <remarks /> | |
| 1730 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 14)] | |
| 1731 | pu blic strin g state { | |
| 1732 | get { | |
| 1733 | retu rn this.st ateField; | |
| 1734 | } | |
| 1735 | set { | |
| 1736 | this .stateFiel d = value; | |
| 1737 | this .RaiseProp ertyChange d("state") ; | |
| 1738 | } | |
| 1739 | } | |
| 1740 | ||
| 1741 | // / <remarks /> | |
| 1742 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 15)] | |
| 1743 | pu blic strin g systemNa me { | |
| 1744 | get { | |
| 1745 | retu rn this.sy stemNameFi eld; | |
| 1746 | } | |
| 1747 | set { | |
| 1748 | this .systemNam eField = v alue; | |
| 1749 | this .RaiseProp ertyChange d("systemN ame"); | |
| 1750 | } | |
| 1751 | } | |
| 1752 | ||
| 1753 | // / <remarks /> | |
| 1754 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 16)] | |
| 1755 | pu blic strin g siteType { | |
| 1756 | get { | |
| 1757 | retu rn this.si teTypeFiel d; | |
| 1758 | } | |
| 1759 | set { | |
| 1760 | this .siteTypeF ield = val ue; | |
| 1761 | this .RaiseProp ertyChange d("siteTyp e"); | |
| 1762 | } | |
| 1763 | } | |
| 1764 | } | |
| 1765 | ||
| 1766 | /// <r emarks/> | |
| 1767 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 1768 | [Syste m.Serializ ableAttrib ute()] | |
| 1769 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 1770 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 1771 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 1772 | public partial c lass dataS ourceArray : abstrac tArrayTO { | |
| 1773 | ||
| 1774 | pr ivate data SourceTO[] itemsFiel d; | |
| 1775 | ||
| 1776 | // / <remarks /> | |
| 1777 | [S ystem.Xml. Serializat ion.XmlArr ayAttribut e(Form=Sys tem.Xml.Sc hema.XmlSc hemaForm.U nqualified , Order=0) ] | |
| 1778 | [S ystem.Xml. Serializat ion.XmlArr ayItemAttr ibute(Form =System.Xm l.Schema.X mlSchemaFo rm.Unquali fied, IsNu llable=fal se)] | |
| 1779 | pu blic dataS ourceTO[] items { | |
| 1780 | get { | |
| 1781 | retu rn this.it emsField; | |
| 1782 | } | |
| 1783 | set { | |
| 1784 | this .itemsFiel d = value; | |
| 1785 | this .RaiseProp ertyChange d("items") ; | |
| 1786 | } | |
| 1787 | } | |
| 1788 | } | |
| 1789 | ||
| 1790 | /// <r emarks/> | |
| 1791 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 1792 | [Syste m.Serializ ableAttrib ute()] | |
| 1793 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 1794 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 1795 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 1796 | public partial c lass dataS ourceTO : abstractTO { | |
| 1797 | ||
| 1798 | pr ivate stri ng protoco lField; | |
| 1799 | ||
| 1800 | pr ivate stri ng modalit yField; | |
| 1801 | ||
| 1802 | pr ivate int timeoutFie ld; | |
| 1803 | ||
| 1804 | pr ivate int portField; | |
| 1805 | ||
| 1806 | pr ivate stri ng provide rField; | |
| 1807 | ||
| 1808 | pr ivate stri ng statusF ield; | |
| 1809 | ||
| 1810 | pr ivate stri ng descrip tionField; | |
| 1811 | ||
| 1812 | pr ivate stri ng context Field; | |
| 1813 | ||
| 1814 | pr ivate bool testSourc eField; | |
| 1815 | ||
| 1816 | pr ivate stri ng vendorF ield; | |
| 1817 | ||
| 1818 | pr ivate stri ng version Field; | |
| 1819 | ||
| 1820 | pr ivate tagg edText sit eIdField; | |
| 1821 | ||
| 1822 | pr ivate stri ng welcome MessageFie ld; | |
| 1823 | ||
| 1824 | // / <remarks /> | |
| 1825 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 1826 | pu blic strin g protocol { | |
| 1827 | get { | |
| 1828 | retu rn this.pr otocolFiel d; | |
| 1829 | } | |
| 1830 | set { | |
| 1831 | this .protocolF ield = val ue; | |
| 1832 | this .RaiseProp ertyChange d("protoco l"); | |
| 1833 | } | |
| 1834 | } | |
| 1835 | ||
| 1836 | // / <remarks /> | |
| 1837 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 1)] | |
| 1838 | pu blic strin g modality { | |
| 1839 | get { | |
| 1840 | retu rn this.mo dalityFiel d; | |
| 1841 | } | |
| 1842 | set { | |
| 1843 | this .modalityF ield = val ue; | |
| 1844 | this .RaiseProp ertyChange d("modalit y"); | |
| 1845 | } | |
| 1846 | } | |
| 1847 | ||
| 1848 | // / <remarks /> | |
| 1849 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 2)] | |
| 1850 | pu blic int t imeout { | |
| 1851 | get { | |
| 1852 | retu rn this.ti meoutField ; | |
| 1853 | } | |
| 1854 | set { | |
| 1855 | this .timeoutFi eld = valu e; | |
| 1856 | this .RaiseProp ertyChange d("timeout "); | |
| 1857 | } | |
| 1858 | } | |
| 1859 | ||
| 1860 | // / <remarks /> | |
| 1861 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 3)] | |
| 1862 | pu blic int p ort { | |
| 1863 | get { | |
| 1864 | retu rn this.po rtField; | |
| 1865 | } | |
| 1866 | set { | |
| 1867 | this .portField = value; | |
| 1868 | this .RaiseProp ertyChange d("port"); | |
| 1869 | } | |
| 1870 | } | |
| 1871 | ||
| 1872 | // / <remarks /> | |
| 1873 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 4)] | |
| 1874 | pu blic strin g provider { | |
| 1875 | get { | |
| 1876 | retu rn this.pr oviderFiel d; | |
| 1877 | } | |
| 1878 | set { | |
| 1879 | this .providerF ield = val ue; | |
| 1880 | this .RaiseProp ertyChange d("provide r"); | |
| 1881 | } | |
| 1882 | } | |
| 1883 | ||
| 1884 | // / <remarks /> | |
| 1885 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 5)] | |
| 1886 | pu blic strin g status { | |
| 1887 | get { | |
| 1888 | retu rn this.st atusField; | |
| 1889 | } | |
| 1890 | set { | |
| 1891 | this .statusFie ld = value ; | |
| 1892 | this .RaiseProp ertyChange d("status" ); | |
| 1893 | } | |
| 1894 | } | |
| 1895 | ||
| 1896 | // / <remarks /> | |
| 1897 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 6)] | |
| 1898 | pu blic strin g descript ion { | |
| 1899 | get { | |
| 1900 | retu rn this.de scriptionF ield; | |
| 1901 | } | |
| 1902 | set { | |
| 1903 | this .descripti onField = value; | |
| 1904 | this .RaiseProp ertyChange d("descrip tion"); | |
| 1905 | } | |
| 1906 | } | |
| 1907 | ||
| 1908 | // / <remarks /> | |
| 1909 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 7)] | |
| 1910 | pu blic strin g context { | |
| 1911 | get { | |
| 1912 | retu rn this.co ntextField ; | |
| 1913 | } | |
| 1914 | set { | |
| 1915 | this .contextFi eld = valu e; | |
| 1916 | this .RaiseProp ertyChange d("context "); | |
| 1917 | } | |
| 1918 | } | |
| 1919 | ||
| 1920 | // / <remarks /> | |
| 1921 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 8)] | |
| 1922 | pu blic bool testSource { | |
| 1923 | get { | |
| 1924 | retu rn this.te stSourceFi eld; | |
| 1925 | } | |
| 1926 | set { | |
| 1927 | this .testSourc eField = v alue; | |
| 1928 | this .RaiseProp ertyChange d("testSou rce"); | |
| 1929 | } | |
| 1930 | } | |
| 1931 | ||
| 1932 | // / <remarks /> | |
| 1933 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 9)] | |
| 1934 | pu blic strin g vendor { | |
| 1935 | get { | |
| 1936 | retu rn this.ve ndorField; | |
| 1937 | } | |
| 1938 | set { | |
| 1939 | this .vendorFie ld = value ; | |
| 1940 | this .RaiseProp ertyChange d("vendor" ); | |
| 1941 | } | |
| 1942 | } | |
| 1943 | ||
| 1944 | // / <remarks /> | |
| 1945 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 10)] | |
| 1946 | pu blic strin g version { | |
| 1947 | get { | |
| 1948 | retu rn this.ve rsionField ; | |
| 1949 | } | |
| 1950 | set { | |
| 1951 | this .versionFi eld = valu e; | |
| 1952 | this .RaiseProp ertyChange d("version "); | |
| 1953 | } | |
| 1954 | } | |
| 1955 | ||
| 1956 | // / <remarks /> | |
| 1957 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 11)] | |
| 1958 | pu blic tagge dText site Id { | |
| 1959 | get { | |
| 1960 | retu rn this.si teIdField; | |
| 1961 | } | |
| 1962 | set { | |
| 1963 | this .siteIdFie ld = value ; | |
| 1964 | this .RaiseProp ertyChange d("siteId" ); | |
| 1965 | } | |
| 1966 | } | |
| 1967 | ||
| 1968 | // / <remarks /> | |
| 1969 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 12)] | |
| 1970 | pu blic strin g welcomeM essage { | |
| 1971 | get { | |
| 1972 | retu rn this.we lcomeMessa geField; | |
| 1973 | } | |
| 1974 | set { | |
| 1975 | this .welcomeMe ssageField = value; | |
| 1976 | this .RaiseProp ertyChange d("welcome Message"); | |
| 1977 | } | |
| 1978 | } | |
| 1979 | } | |
| 1980 | ||
| 1981 | /// <r emarks/> | |
| 1982 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 1983 | [Syste m.Serializ ableAttrib ute()] | |
| 1984 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 1985 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 1986 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 1987 | public partial c lass perso nArray : a bstractArr ayTO { | |
| 1988 | ||
| 1989 | pr ivate pers onTO[] per sonsField; | |
| 1990 | ||
| 1991 | // / <remarks /> | |
| 1992 | [S ystem.Xml. Serializat ion.XmlArr ayAttribut e(Form=Sys tem.Xml.Sc hema.XmlSc hemaForm.U nqualified , Order=0) ] | |
| 1993 | [S ystem.Xml. Serializat ion.XmlArr ayItemAttr ibute(Form =System.Xm l.Schema.X mlSchemaFo rm.Unquali fied, IsNu llable=fal se)] | |
| 1994 | pu blic perso nTO[] pers ons { | |
| 1995 | get { | |
| 1996 | retu rn this.pe rsonsField ; | |
| 1997 | } | |
| 1998 | set { | |
| 1999 | this .personsFi eld = valu e; | |
| 2000 | this .RaiseProp ertyChange d("persons "); | |
| 2001 | } | |
| 2002 | } | |
| 2003 | } | |
| 2004 | ||
| 2005 | /// <r emarks/> | |
| 2006 | [Syste m.Xml.Seri alization. XmlInclude Attribute( typeof(pat ientTO))] | |
| 2007 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 2008 | [Syste m.Serializ ableAttrib ute()] | |
| 2009 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 2010 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 2011 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 2012 | public partial c lass perso nTO : abst ractTO { | |
| 2013 | ||
| 2014 | pr ivate stri ng typeFie ld; | |
| 2015 | ||
| 2016 | pr ivate stri ng birthPl aceField; | |
| 2017 | ||
| 2018 | pr ivate stri ng religio nField; | |
| 2019 | ||
| 2020 | pr ivate stri ng nameFie ld; | |
| 2021 | ||
| 2022 | pr ivate stri ng ssnFiel d; | |
| 2023 | ||
| 2024 | pr ivate stri ng genderF ield; | |
| 2025 | ||
| 2026 | pr ivate stri ng dobFiel d; | |
| 2027 | ||
| 2028 | pr ivate stri ng ethnici tyField; | |
| 2029 | ||
| 2030 | pr ivate int ageField; | |
| 2031 | ||
| 2032 | pr ivate bool ageFieldS pecified; | |
| 2033 | ||
| 2034 | pr ivate stri ng marital StatusFiel d; | |
| 2035 | ||
| 2036 | pr ivate addr essTO home AddressFie ld; | |
| 2037 | ||
| 2038 | pr ivate phon eNumTO hom ePhoneFiel d; | |
| 2039 | ||
| 2040 | pr ivate phon eNumTO cel lPhoneFiel d; | |
| 2041 | ||
| 2042 | pr ivate demo graphicSet TO[] demog raphicsFie ld; | |
| 2043 | ||
| 2044 | // / <remarks /> | |
| 2045 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 2046 | pu blic strin g type { | |
| 2047 | get { | |
| 2048 | retu rn this.ty peField; | |
| 2049 | } | |
| 2050 | set { | |
| 2051 | this .typeField = value; | |
| 2052 | this .RaiseProp ertyChange d("type"); | |
| 2053 | } | |
| 2054 | } | |
| 2055 | ||
| 2056 | // / <remarks /> | |
| 2057 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 1)] | |
| 2058 | pu blic strin g birthPla ce { | |
| 2059 | get { | |
| 2060 | retu rn this.bi rthPlaceFi eld; | |
| 2061 | } | |
| 2062 | set { | |
| 2063 | this .birthPlac eField = v alue; | |
| 2064 | this .RaiseProp ertyChange d("birthPl ace"); | |
| 2065 | } | |
| 2066 | } | |
| 2067 | ||
| 2068 | // / <remarks /> | |
| 2069 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 2)] | |
| 2070 | pu blic strin g religion { | |
| 2071 | get { | |
| 2072 | retu rn this.re ligionFiel d; | |
| 2073 | } | |
| 2074 | set { | |
| 2075 | this .religionF ield = val ue; | |
| 2076 | this .RaiseProp ertyChange d("religio n"); | |
| 2077 | } | |
| 2078 | } | |
| 2079 | ||
| 2080 | // / <remarks /> | |
| 2081 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 3)] | |
| 2082 | pu blic strin g name { | |
| 2083 | get { | |
| 2084 | retu rn this.na meField; | |
| 2085 | } | |
| 2086 | set { | |
| 2087 | this .nameField = value; | |
| 2088 | this .RaiseProp ertyChange d("name"); | |
| 2089 | } | |
| 2090 | } | |
| 2091 | ||
| 2092 | // / <remarks /> | |
| 2093 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 4)] | |
| 2094 | pu blic strin g ssn { | |
| 2095 | get { | |
| 2096 | retu rn this.ss nField; | |
| 2097 | } | |
| 2098 | set { | |
| 2099 | this .ssnField = value; | |
| 2100 | this .RaiseProp ertyChange d("ssn"); | |
| 2101 | } | |
| 2102 | } | |
| 2103 | ||
| 2104 | // / <remarks /> | |
| 2105 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 5)] | |
| 2106 | pu blic strin g gender { | |
| 2107 | get { | |
| 2108 | retu rn this.ge nderField; | |
| 2109 | } | |
| 2110 | set { | |
| 2111 | this .genderFie ld = value ; | |
| 2112 | this .RaiseProp ertyChange d("gender" ); | |
| 2113 | } | |
| 2114 | } | |
| 2115 | ||
| 2116 | // / <remarks /> | |
| 2117 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 6)] | |
| 2118 | pu blic strin g dob { | |
| 2119 | get { | |
| 2120 | retu rn this.do bField; | |
| 2121 | } | |
| 2122 | set { | |
| 2123 | this .dobField = value; | |
| 2124 | this .RaiseProp ertyChange d("dob"); | |
| 2125 | } | |
| 2126 | } | |
| 2127 | ||
| 2128 | // / <remarks /> | |
| 2129 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 7)] | |
| 2130 | pu blic strin g ethnicit y { | |
| 2131 | get { | |
| 2132 | retu rn this.et hnicityFie ld; | |
| 2133 | } | |
| 2134 | set { | |
| 2135 | this .ethnicity Field = va lue; | |
| 2136 | this .RaiseProp ertyChange d("ethnici ty"); | |
| 2137 | } | |
| 2138 | } | |
| 2139 | ||
| 2140 | // / <remarks /> | |
| 2141 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 8)] | |
| 2142 | pu blic int a ge { | |
| 2143 | get { | |
| 2144 | retu rn this.ag eField; | |
| 2145 | } | |
| 2146 | set { | |
| 2147 | this .ageField = value; | |
| 2148 | this .RaiseProp ertyChange d("age"); | |
| 2149 | } | |
| 2150 | } | |
| 2151 | ||
| 2152 | // / <remarks /> | |
| 2153 | [S ystem.Xml. Serializat ion.XmlIgn oreAttribu te()] | |
| 2154 | pu blic bool ageSpecifi ed { | |
| 2155 | get { | |
| 2156 | retu rn this.ag eFieldSpec ified; | |
| 2157 | } | |
| 2158 | set { | |
| 2159 | this .ageFieldS pecified = value; | |
| 2160 | this .RaiseProp ertyChange d("ageSpec ified"); | |
| 2161 | } | |
| 2162 | } | |
| 2163 | ||
| 2164 | // / <remarks /> | |
| 2165 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 9)] | |
| 2166 | pu blic strin g maritalS tatus { | |
| 2167 | get { | |
| 2168 | retu rn this.ma ritalStatu sField; | |
| 2169 | } | |
| 2170 | set { | |
| 2171 | this .maritalSt atusField = value; | |
| 2172 | this .RaiseProp ertyChange d("marital Status"); | |
| 2173 | } | |
| 2174 | } | |
| 2175 | ||
| 2176 | // / <remarks /> | |
| 2177 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 10)] | |
| 2178 | pu blic addre ssTO homeA ddress { | |
| 2179 | get { | |
| 2180 | retu rn this.ho meAddressF ield; | |
| 2181 | } | |
| 2182 | set { | |
| 2183 | this .homeAddre ssField = value; | |
| 2184 | this .RaiseProp ertyChange d("homeAdd ress"); | |
| 2185 | } | |
| 2186 | } | |
| 2187 | ||
| 2188 | // / <remarks /> | |
| 2189 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 11)] | |
| 2190 | pu blic phone NumTO home Phone { | |
| 2191 | get { | |
| 2192 | retu rn this.ho mePhoneFie ld; | |
| 2193 | } | |
| 2194 | set { | |
| 2195 | this .homePhone Field = va lue; | |
| 2196 | this .RaiseProp ertyChange d("homePho ne"); | |
| 2197 | } | |
| 2198 | } | |
| 2199 | ||
| 2200 | // / <remarks /> | |
| 2201 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 12)] | |
| 2202 | pu blic phone NumTO cell Phone { | |
| 2203 | get { | |
| 2204 | retu rn this.ce llPhoneFie ld; | |
| 2205 | } | |
| 2206 | set { | |
| 2207 | this .cellPhone Field = va lue; | |
| 2208 | this .RaiseProp ertyChange d("cellPho ne"); | |
| 2209 | } | |
| 2210 | } | |
| 2211 | ||
| 2212 | // / <remarks /> | |
| 2213 | [S ystem.Xml. Serializat ion.XmlArr ayAttribut e(Form=Sys tem.Xml.Sc hema.XmlSc hemaForm.U nqualified , Order=13 )] | |
| 2214 | [S ystem.Xml. Serializat ion.XmlArr ayItemAttr ibute(Form =System.Xm l.Schema.X mlSchemaFo rm.Unquali fied, IsNu llable=fal se)] | |
| 2215 | pu blic demog raphicSetT O[] demogr aphics { | |
| 2216 | get { | |
| 2217 | retu rn this.de mographics Field; | |
| 2218 | } | |
| 2219 | set { | |
| 2220 | this .demograph icsField = value; | |
| 2221 | this .RaiseProp ertyChange d("demogra phics"); | |
| 2222 | } | |
| 2223 | } | |
| 2224 | } | |
| 2225 | ||
| 2226 | /// <r emarks/> | |
| 2227 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 2228 | [Syste m.Serializ ableAttrib ute()] | |
| 2229 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 2230 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 2231 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 2232 | public partial c lass phone NumTO : ab stractTO { | |
| 2233 | ||
| 2234 | pr ivate stri ng typeFie ld; | |
| 2235 | ||
| 2236 | pr ivate stri ng areaCod eField; | |
| 2237 | ||
| 2238 | pr ivate stri ng exchang eField; | |
| 2239 | ||
| 2240 | pr ivate stri ng numberF ield; | |
| 2241 | ||
| 2242 | pr ivate stri ng descrip tionField; | |
| 2243 | ||
| 2244 | // / <remarks /> | |
| 2245 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 2246 | pu blic strin g type { | |
| 2247 | get { | |
| 2248 | retu rn this.ty peField; | |
| 2249 | } | |
| 2250 | set { | |
| 2251 | this .typeField = value; | |
| 2252 | this .RaiseProp ertyChange d("type"); | |
| 2253 | } | |
| 2254 | } | |
| 2255 | ||
| 2256 | // / <remarks /> | |
| 2257 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 1)] | |
| 2258 | pu blic strin g areaCode { | |
| 2259 | get { | |
| 2260 | retu rn this.ar eaCodeFiel d; | |
| 2261 | } | |
| 2262 | set { | |
| 2263 | this .areaCodeF ield = val ue; | |
| 2264 | this .RaiseProp ertyChange d("areaCod e"); | |
| 2265 | } | |
| 2266 | } | |
| 2267 | ||
| 2268 | // / <remarks /> | |
| 2269 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 2)] | |
| 2270 | pu blic strin g exchange { | |
| 2271 | get { | |
| 2272 | retu rn this.ex changeFiel d; | |
| 2273 | } | |
| 2274 | set { | |
| 2275 | this .exchangeF ield = val ue; | |
| 2276 | this .RaiseProp ertyChange d("exchang e"); | |
| 2277 | } | |
| 2278 | } | |
| 2279 | ||
| 2280 | // / <remarks /> | |
| 2281 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 3)] | |
| 2282 | pu blic strin g number { | |
| 2283 | get { | |
| 2284 | retu rn this.nu mberField; | |
| 2285 | } | |
| 2286 | set { | |
| 2287 | this .numberFie ld = value ; | |
| 2288 | this .RaiseProp ertyChange d("number" ); | |
| 2289 | } | |
| 2290 | } | |
| 2291 | ||
| 2292 | // / <remarks /> | |
| 2293 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 4)] | |
| 2294 | pu blic strin g descript ion { | |
| 2295 | get { | |
| 2296 | retu rn this.de scriptionF ield; | |
| 2297 | } | |
| 2298 | set { | |
| 2299 | this .descripti onField = value; | |
| 2300 | this .RaiseProp ertyChange d("descrip tion"); | |
| 2301 | } | |
| 2302 | } | |
| 2303 | } | |
| 2304 | ||
| 2305 | /// <r emarks/> | |
| 2306 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 2307 | [Syste m.Serializ ableAttrib ute()] | |
| 2308 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 2309 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 2310 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 2311 | public partial c lass patie ntTO : per sonTO { | |
| 2312 | ||
| 2313 | pr ivate stri ng occupat ionField; | |
| 2314 | ||
| 2315 | pr ivate stri ng employm entStatusF ield; | |
| 2316 | ||
| 2317 | pr ivate stri ng employe rNameField ; | |
| 2318 | ||
| 2319 | pr ivate pers onArray re lationship sField; | |
| 2320 | ||
| 2321 | pr ivate stri ng patient NameField; | |
| 2322 | ||
| 2323 | pr ivate stri ng mpiPidF ield; | |
| 2324 | ||
| 2325 | pr ivate stri ng mpiChec ksumField; | |
| 2326 | ||
| 2327 | pr ivate stri ng localPi dField; | |
| 2328 | ||
| 2329 | pr ivate tagg edTextArra y sitePids Field; | |
| 2330 | ||
| 2331 | pr ivate stri ng vendorP idField; | |
| 2332 | ||
| 2333 | pr ivate hosp italLocati onTO locat ionField; | |
| 2334 | ||
| 2335 | pr ivate stri ng cwadFie ld; | |
| 2336 | ||
| 2337 | pr ivate bool restricte dField; | |
| 2338 | ||
| 2339 | pr ivate bool restricte dFieldSpec ified; | |
| 2340 | ||
| 2341 | pr ivate stri ng admitTi mestampFie ld; | |
| 2342 | ||
| 2343 | pr ivate bool serviceCo nnectedFie ld; | |
| 2344 | ||
| 2345 | pr ivate bool serviceCo nnectedFie ldSpecifie d; | |
| 2346 | ||
| 2347 | pr ivate int scPercentF ield; | |
| 2348 | ||
| 2349 | pr ivate bool scPercent FieldSpeci fied; | |
| 2350 | ||
| 2351 | pr ivate bool inpatient Field; | |
| 2352 | ||
| 2353 | pr ivate bool inpatient FieldSpeci fied; | |
| 2354 | ||
| 2355 | pr ivate stri ng decease dDateField ; | |
| 2356 | ||
| 2357 | pr ivate tagg edText con fidentiali tyField; | |
| 2358 | ||
| 2359 | pr ivate bool needsMean sTestField ; | |
| 2360 | ||
| 2361 | pr ivate bool needsMean sTestField Specified; | |
| 2362 | ||
| 2363 | pr ivate tagg edTextArra y patientF lagsField; | |
| 2364 | ||
| 2365 | pr ivate stri ng cmorSit eIdField; | |
| 2366 | ||
| 2367 | pr ivate stri ng activeI nsuranceFi eld; | |
| 2368 | ||
| 2369 | pr ivate bool isTestPat ientField; | |
| 2370 | ||
| 2371 | pr ivate bool isTestPat ientFieldS pecified; | |
| 2372 | ||
| 2373 | pr ivate stri ng current MeansStatu sField; | |
| 2374 | ||
| 2375 | pr ivate bool hasInsura nceField; | |
| 2376 | ||
| 2377 | pr ivate bool hasInsura nceFieldSp ecified; | |
| 2378 | ||
| 2379 | pr ivate tagg edText pre ferredFaci lityField; | |
| 2380 | ||
| 2381 | pr ivate stri ng patient TypeField; | |
| 2382 | ||
| 2383 | pr ivate bool isVeteran Field; | |
| 2384 | ||
| 2385 | pr ivate bool isVeteran FieldSpeci fied; | |
| 2386 | ||
| 2387 | pr ivate bool isLocally AssignedMp iPidField; | |
| 2388 | ||
| 2389 | pr ivate bool isLocally AssignedMp iPidFieldS pecified; | |
| 2390 | ||
| 2391 | pr ivate site Array site sField; | |
| 2392 | ||
| 2393 | pr ivate team teamField ; | |
| 2394 | ||
| 2395 | // / <remarks /> | |
| 2396 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 2397 | pu blic strin g occupati on { | |
| 2398 | get { | |
| 2399 | retu rn this.oc cupationFi eld; | |
| 2400 | } | |
| 2401 | set { | |
| 2402 | this .occupatio nField = v alue; | |
| 2403 | this .RaiseProp ertyChange d("occupat ion"); | |
| 2404 | } | |
| 2405 | } | |
| 2406 | ||
| 2407 | // / <remarks /> | |
| 2408 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 1)] | |
| 2409 | pu blic strin g employme ntStatus { | |
| 2410 | get { | |
| 2411 | retu rn this.em ploymentSt atusField; | |
| 2412 | } | |
| 2413 | set { | |
| 2414 | this .employmen tStatusFie ld = value ; | |
| 2415 | this .RaiseProp ertyChange d("employm entStatus" ); | |
| 2416 | } | |
| 2417 | } | |
| 2418 | ||
| 2419 | // / <remarks /> | |
| 2420 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 2)] | |
| 2421 | pu blic strin g employer Name { | |
| 2422 | get { | |
| 2423 | retu rn this.em ployerName Field; | |
| 2424 | } | |
| 2425 | set { | |
| 2426 | this .employerN ameField = value; | |
| 2427 | this .RaiseProp ertyChange d("employe rName"); | |
| 2428 | } | |
| 2429 | } | |
| 2430 | ||
| 2431 | // / <remarks /> | |
| 2432 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 3)] | |
| 2433 | pu blic perso nArray rel ationships { | |
| 2434 | get { | |
| 2435 | retu rn this.re lationship sField; | |
| 2436 | } | |
| 2437 | set { | |
| 2438 | this .relations hipsField = value; | |
| 2439 | this .RaiseProp ertyChange d("relatio nships"); | |
| 2440 | } | |
| 2441 | } | |
| 2442 | ||
| 2443 | // / <remarks /> | |
| 2444 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 4)] | |
| 2445 | pu blic strin g patientN ame { | |
| 2446 | get { | |
| 2447 | retu rn this.pa tientNameF ield; | |
| 2448 | } | |
| 2449 | set { | |
| 2450 | this .patientNa meField = value; | |
| 2451 | this .RaiseProp ertyChange d("patient Name"); | |
| 2452 | } | |
| 2453 | } | |
| 2454 | ||
| 2455 | // / <remarks /> | |
| 2456 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 5)] | |
| 2457 | pu blic strin g mpiPid { | |
| 2458 | get { | |
| 2459 | retu rn this.mp iPidField; | |
| 2460 | } | |
| 2461 | set { | |
| 2462 | this .mpiPidFie ld = value ; | |
| 2463 | this .RaiseProp ertyChange d("mpiPid" ); | |
| 2464 | } | |
| 2465 | } | |
| 2466 | ||
| 2467 | // / <remarks /> | |
| 2468 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 6)] | |
| 2469 | pu blic strin g mpiCheck sum { | |
| 2470 | get { | |
| 2471 | retu rn this.mp iChecksumF ield; | |
| 2472 | } | |
| 2473 | set { | |
| 2474 | this .mpiChecks umField = value; | |
| 2475 | this .RaiseProp ertyChange d("mpiChec ksum"); | |
| 2476 | } | |
| 2477 | } | |
| 2478 | ||
| 2479 | // / <remarks /> | |
| 2480 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 7)] | |
| 2481 | pu blic strin g localPid { | |
| 2482 | get { | |
| 2483 | retu rn this.lo calPidFiel d; | |
| 2484 | } | |
| 2485 | set { | |
| 2486 | this .localPidF ield = val ue; | |
| 2487 | this .RaiseProp ertyChange d("localPi d"); | |
| 2488 | } | |
| 2489 | } | |
| 2490 | ||
| 2491 | // / <remarks /> | |
| 2492 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 8)] | |
| 2493 | pu blic tagge dTextArray sitePids { | |
| 2494 | get { | |
| 2495 | retu rn this.si tePidsFiel d; | |
| 2496 | } | |
| 2497 | set { | |
| 2498 | this .sitePidsF ield = val ue; | |
| 2499 | this .RaiseProp ertyChange d("sitePid s"); | |
| 2500 | } | |
| 2501 | } | |
| 2502 | ||
| 2503 | // / <remarks /> | |
| 2504 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 9)] | |
| 2505 | pu blic strin g vendorPi d { | |
| 2506 | get { | |
| 2507 | retu rn this.ve ndorPidFie ld; | |
| 2508 | } | |
| 2509 | set { | |
| 2510 | this .vendorPid Field = va lue; | |
| 2511 | this .RaiseProp ertyChange d("vendorP id"); | |
| 2512 | } | |
| 2513 | } | |
| 2514 | ||
| 2515 | // / <remarks /> | |
| 2516 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 10)] | |
| 2517 | pu blic hospi talLocatio nTO locati on { | |
| 2518 | get { | |
| 2519 | retu rn this.lo cationFiel d; | |
| 2520 | } | |
| 2521 | set { | |
| 2522 | this .locationF ield = val ue; | |
| 2523 | this .RaiseProp ertyChange d("locatio n"); | |
| 2524 | } | |
| 2525 | } | |
| 2526 | ||
| 2527 | // / <remarks /> | |
| 2528 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 11)] | |
| 2529 | pu blic strin g cwad { | |
| 2530 | get { | |
| 2531 | retu rn this.cw adField; | |
| 2532 | } | |
| 2533 | set { | |
| 2534 | this .cwadField = value; | |
| 2535 | this .RaiseProp ertyChange d("cwad"); | |
| 2536 | } | |
| 2537 | } | |
| 2538 | ||
| 2539 | // / <remarks /> | |
| 2540 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 12)] | |
| 2541 | pu blic bool restricted { | |
| 2542 | get { | |
| 2543 | retu rn this.re strictedFi eld; | |
| 2544 | } | |
| 2545 | set { | |
| 2546 | this .restricte dField = v alue; | |
| 2547 | this .RaiseProp ertyChange d("restric ted"); | |
| 2548 | } | |
| 2549 | } | |
| 2550 | ||
| 2551 | // / <remarks /> | |
| 2552 | [S ystem.Xml. Serializat ion.XmlIgn oreAttribu te()] | |
| 2553 | pu blic bool restricted Specified { | |
| 2554 | get { | |
| 2555 | retu rn this.re strictedFi eldSpecifi ed; | |
| 2556 | } | |
| 2557 | set { | |
| 2558 | this .restricte dFieldSpec ified = va lue; | |
| 2559 | this .RaiseProp ertyChange d("restric tedSpecifi ed"); | |
| 2560 | } | |
| 2561 | } | |
| 2562 | ||
| 2563 | // / <remarks /> | |
| 2564 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 13)] | |
| 2565 | pu blic strin g admitTim estamp { | |
| 2566 | get { | |
| 2567 | retu rn this.ad mitTimesta mpField; | |
| 2568 | } | |
| 2569 | set { | |
| 2570 | this .admitTime stampField = value; | |
| 2571 | this .RaiseProp ertyChange d("admitTi mestamp"); | |
| 2572 | } | |
| 2573 | } | |
| 2574 | ||
| 2575 | // / <remarks /> | |
| 2576 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 14)] | |
| 2577 | pu blic bool serviceCon nected { | |
| 2578 | get { | |
| 2579 | retu rn this.se rviceConne ctedField; | |
| 2580 | } | |
| 2581 | set { | |
| 2582 | this .serviceCo nnectedFie ld = value ; | |
| 2583 | this .RaiseProp ertyChange d("service Connected" ); | |
| 2584 | } | |
| 2585 | } | |
| 2586 | ||
| 2587 | // / <remarks /> | |
| 2588 | [S ystem.Xml. Serializat ion.XmlIgn oreAttribu te()] | |
| 2589 | pu blic bool serviceCon nectedSpec ified { | |
| 2590 | get { | |
| 2591 | retu rn this.se rviceConne ctedFieldS pecified; | |
| 2592 | } | |
| 2593 | set { | |
| 2594 | this .serviceCo nnectedFie ldSpecifie d = value; | |
| 2595 | this .RaiseProp ertyChange d("service ConnectedS pecified") ; | |
| 2596 | } | |
| 2597 | } | |
| 2598 | ||
| 2599 | // / <remarks /> | |
| 2600 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 15)] | |
| 2601 | pu blic int s cPercent { | |
| 2602 | get { | |
| 2603 | retu rn this.sc PercentFie ld; | |
| 2604 | } | |
| 2605 | set { | |
| 2606 | this .scPercent Field = va lue; | |
| 2607 | this .RaiseProp ertyChange d("scPerce nt"); | |
| 2608 | } | |
| 2609 | } | |
| 2610 | ||
| 2611 | // / <remarks /> | |
| 2612 | [S ystem.Xml. Serializat ion.XmlIgn oreAttribu te()] | |
| 2613 | pu blic bool scPercentS pecified { | |
| 2614 | get { | |
| 2615 | retu rn this.sc PercentFie ldSpecifie d; | |
| 2616 | } | |
| 2617 | set { | |
| 2618 | this .scPercent FieldSpeci fied = val ue; | |
| 2619 | this .RaiseProp ertyChange d("scPerce ntSpecifie d"); | |
| 2620 | } | |
| 2621 | } | |
| 2622 | ||
| 2623 | // / <remarks /> | |
| 2624 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 16)] | |
| 2625 | pu blic bool inpatient { | |
| 2626 | get { | |
| 2627 | retu rn this.in patientFie ld; | |
| 2628 | } | |
| 2629 | set { | |
| 2630 | this .inpatient Field = va lue; | |
| 2631 | this .RaiseProp ertyChange d("inpatie nt"); | |
| 2632 | } | |
| 2633 | } | |
| 2634 | ||
| 2635 | // / <remarks /> | |
| 2636 | [S ystem.Xml. Serializat ion.XmlIgn oreAttribu te()] | |
| 2637 | pu blic bool inpatientS pecified { | |
| 2638 | get { | |
| 2639 | retu rn this.in patientFie ldSpecifie d; | |
| 2640 | } | |
| 2641 | set { | |
| 2642 | this .inpatient FieldSpeci fied = val ue; | |
| 2643 | this .RaiseProp ertyChange d("inpatie ntSpecifie d"); | |
| 2644 | } | |
| 2645 | } | |
| 2646 | ||
| 2647 | // / <remarks /> | |
| 2648 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 17)] | |
| 2649 | pu blic strin g deceased Date { | |
| 2650 | get { | |
| 2651 | retu rn this.de ceasedDate Field; | |
| 2652 | } | |
| 2653 | set { | |
| 2654 | this .deceasedD ateField = value; | |
| 2655 | this .RaiseProp ertyChange d("decease dDate"); | |
| 2656 | } | |
| 2657 | } | |
| 2658 | ||
| 2659 | // / <remarks /> | |
| 2660 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 18)] | |
| 2661 | pu blic tagge dText conf identialit y { | |
| 2662 | get { | |
| 2663 | retu rn this.co nfidential ityField; | |
| 2664 | } | |
| 2665 | set { | |
| 2666 | this .confident ialityFiel d = value; | |
| 2667 | this .RaiseProp ertyChange d("confide ntiality") ; | |
| 2668 | } | |
| 2669 | } | |
| 2670 | ||
| 2671 | // / <remarks /> | |
| 2672 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 19)] | |
| 2673 | pu blic bool needsMeans Test { | |
| 2674 | get { | |
| 2675 | retu rn this.ne edsMeansTe stField; | |
| 2676 | } | |
| 2677 | set { | |
| 2678 | this .needsMean sTestField = value; | |
| 2679 | this .RaiseProp ertyChange d("needsMe ansTest"); | |
| 2680 | } | |
| 2681 | } | |
| 2682 | ||
| 2683 | // / <remarks /> | |
| 2684 | [S ystem.Xml. Serializat ion.XmlIgn oreAttribu te()] | |
| 2685 | pu blic bool needsMeans TestSpecif ied { | |
| 2686 | get { | |
| 2687 | retu rn this.ne edsMeansTe stFieldSpe cified; | |
| 2688 | } | |
| 2689 | set { | |
| 2690 | this .needsMean sTestField Specified = value; | |
| 2691 | this .RaiseProp ertyChange d("needsMe ansTestSpe cified"); | |
| 2692 | } | |
| 2693 | } | |
| 2694 | ||
| 2695 | // / <remarks /> | |
| 2696 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 20)] | |
| 2697 | pu blic tagge dTextArray patientFl ags { | |
| 2698 | get { | |
| 2699 | retu rn this.pa tientFlags Field; | |
| 2700 | } | |
| 2701 | set { | |
| 2702 | this .patientFl agsField = value; | |
| 2703 | this .RaiseProp ertyChange d("patient Flags"); | |
| 2704 | } | |
| 2705 | } | |
| 2706 | ||
| 2707 | // / <remarks /> | |
| 2708 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 21)] | |
| 2709 | pu blic strin g cmorSite Id { | |
| 2710 | get { | |
| 2711 | retu rn this.cm orSiteIdFi eld; | |
| 2712 | } | |
| 2713 | set { | |
| 2714 | this .cmorSiteI dField = v alue; | |
| 2715 | this .RaiseProp ertyChange d("cmorSit eId"); | |
| 2716 | } | |
| 2717 | } | |
| 2718 | ||
| 2719 | // / <remarks /> | |
| 2720 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 22)] | |
| 2721 | pu blic strin g activeIn surance { | |
| 2722 | get { | |
| 2723 | retu rn this.ac tiveInsura nceField; | |
| 2724 | } | |
| 2725 | set { | |
| 2726 | this .activeIns uranceFiel d = value; | |
| 2727 | this .RaiseProp ertyChange d("activeI nsurance") ; | |
| 2728 | } | |
| 2729 | } | |
| 2730 | ||
| 2731 | // / <remarks /> | |
| 2732 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 23)] | |
| 2733 | pu blic bool isTestPati ent { | |
| 2734 | get { | |
| 2735 | retu rn this.is TestPatien tField; | |
| 2736 | } | |
| 2737 | set { | |
| 2738 | this .isTestPat ientField = value; | |
| 2739 | this .RaiseProp ertyChange d("isTestP atient"); | |
| 2740 | } | |
| 2741 | } | |
| 2742 | ||
| 2743 | // / <remarks /> | |
| 2744 | [S ystem.Xml. Serializat ion.XmlIgn oreAttribu te()] | |
| 2745 | pu blic bool isTestPati entSpecifi ed { | |
| 2746 | get { | |
| 2747 | retu rn this.is TestPatien tFieldSpec ified; | |
| 2748 | } | |
| 2749 | set { | |
| 2750 | this .isTestPat ientFieldS pecified = value; | |
| 2751 | this .RaiseProp ertyChange d("isTestP atientSpec ified"); | |
| 2752 | } | |
| 2753 | } | |
| 2754 | ||
| 2755 | // / <remarks /> | |
| 2756 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 24)] | |
| 2757 | pu blic strin g currentM eansStatus { | |
| 2758 | get { | |
| 2759 | retu rn this.cu rrentMeans StatusFiel d; | |
| 2760 | } | |
| 2761 | set { | |
| 2762 | this .currentMe ansStatusF ield = val ue; | |
| 2763 | this .RaiseProp ertyChange d("current MeansStatu s"); | |
| 2764 | } | |
| 2765 | } | |
| 2766 | ||
| 2767 | // / <remarks /> | |
| 2768 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 25)] | |
| 2769 | pu blic bool hasInsuran ce { | |
| 2770 | get { | |
| 2771 | retu rn this.ha sInsurance Field; | |
| 2772 | } | |
| 2773 | set { | |
| 2774 | this .hasInsura nceField = value; | |
| 2775 | this .RaiseProp ertyChange d("hasInsu rance"); | |
| 2776 | } | |
| 2777 | } | |
| 2778 | ||
| 2779 | // / <remarks /> | |
| 2780 | [S ystem.Xml. Serializat ion.XmlIgn oreAttribu te()] | |
| 2781 | pu blic bool hasInsuran ceSpecifie d { | |
| 2782 | get { | |
| 2783 | retu rn this.ha sInsurance FieldSpeci fied; | |
| 2784 | } | |
| 2785 | set { | |
| 2786 | this .hasInsura nceFieldSp ecified = value; | |
| 2787 | this .RaiseProp ertyChange d("hasInsu ranceSpeci fied"); | |
| 2788 | } | |
| 2789 | } | |
| 2790 | ||
| 2791 | // / <remarks /> | |
| 2792 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 26)] | |
| 2793 | pu blic tagge dText pref erredFacil ity { | |
| 2794 | get { | |
| 2795 | retu rn this.pr eferredFac ilityField ; | |
| 2796 | } | |
| 2797 | set { | |
| 2798 | this .preferred FacilityFi eld = valu e; | |
| 2799 | this .RaiseProp ertyChange d("preferr edFacility "); | |
| 2800 | } | |
| 2801 | } | |
| 2802 | ||
| 2803 | // / <remarks /> | |
| 2804 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 27)] | |
| 2805 | pu blic strin g patientT ype { | |
| 2806 | get { | |
| 2807 | retu rn this.pa tientTypeF ield; | |
| 2808 | } | |
| 2809 | set { | |
| 2810 | this .patientTy peField = value; | |
| 2811 | this .RaiseProp ertyChange d("patient Type"); | |
| 2812 | } | |
| 2813 | } | |
| 2814 | ||
| 2815 | // / <remarks /> | |
| 2816 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 28)] | |
| 2817 | pu blic bool isVeteran { | |
| 2818 | get { | |
| 2819 | retu rn this.is VeteranFie ld; | |
| 2820 | } | |
| 2821 | set { | |
| 2822 | this .isVeteran Field = va lue; | |
| 2823 | this .RaiseProp ertyChange d("isVeter an"); | |
| 2824 | } | |
| 2825 | } | |
| 2826 | ||
| 2827 | // / <remarks /> | |
| 2828 | [S ystem.Xml. Serializat ion.XmlIgn oreAttribu te()] | |
| 2829 | pu blic bool isVeteranS pecified { | |
| 2830 | get { | |
| 2831 | retu rn this.is VeteranFie ldSpecifie d; | |
| 2832 | } | |
| 2833 | set { | |
| 2834 | this .isVeteran FieldSpeci fied = val ue; | |
| 2835 | this .RaiseProp ertyChange d("isVeter anSpecifie d"); | |
| 2836 | } | |
| 2837 | } | |
| 2838 | ||
| 2839 | // / <remarks /> | |
| 2840 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 29)] | |
| 2841 | pu blic bool isLocallyA ssignedMpi Pid { | |
| 2842 | get { | |
| 2843 | retu rn this.is LocallyAss ignedMpiPi dField; | |
| 2844 | } | |
| 2845 | set { | |
| 2846 | this .isLocally AssignedMp iPidField = value; | |
| 2847 | this .RaiseProp ertyChange d("isLocal lyAssigned MpiPid"); | |
| 2848 | } | |
| 2849 | } | |
| 2850 | ||
| 2851 | // / <remarks /> | |
| 2852 | [S ystem.Xml. Serializat ion.XmlIgn oreAttribu te()] | |
| 2853 | pu blic bool isLocallyA ssignedMpi PidSpecifi ed { | |
| 2854 | get { | |
| 2855 | retu rn this.is LocallyAss ignedMpiPi dFieldSpec ified; | |
| 2856 | } | |
| 2857 | set { | |
| 2858 | this .isLocally AssignedMp iPidFieldS pecified = value; | |
| 2859 | this .RaiseProp ertyChange d("isLocal lyAssigned MpiPidSpec ified"); | |
| 2860 | } | |
| 2861 | } | |
| 2862 | ||
| 2863 | // / <remarks /> | |
| 2864 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 30)] | |
| 2865 | pu blic siteA rray sites { | |
| 2866 | get { | |
| 2867 | retu rn this.si tesField; | |
| 2868 | } | |
| 2869 | set { | |
| 2870 | this .sitesFiel d = value; | |
| 2871 | this .RaiseProp ertyChange d("sites") ; | |
| 2872 | } | |
| 2873 | } | |
| 2874 | ||
| 2875 | // / <remarks /> | |
| 2876 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 31)] | |
| 2877 | pu blic team team { | |
| 2878 | get { | |
| 2879 | retu rn this.te amField; | |
| 2880 | } | |
| 2881 | set { | |
| 2882 | this .teamField = value; | |
| 2883 | this .RaiseProp ertyChange d("team"); | |
| 2884 | } | |
| 2885 | } | |
| 2886 | } | |
| 2887 | ||
| 2888 | /// <r emarks/> | |
| 2889 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 2890 | [Syste m.Serializ ableAttrib ute()] | |
| 2891 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 2892 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 2893 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 2894 | public partial c lass hospi talLocatio nTO : abst ractTO { | |
| 2895 | ||
| 2896 | pr ivate stri ng idField ; | |
| 2897 | ||
| 2898 | pr ivate stri ng nameFie ld; | |
| 2899 | ||
| 2900 | pr ivate tagg edText dep artmentFie ld; | |
| 2901 | ||
| 2902 | pr ivate tagg edText ser viceField; | |
| 2903 | ||
| 2904 | pr ivate tagg edText spe cialtyFiel d; | |
| 2905 | ||
| 2906 | pr ivate tagg edText sto pCodeField ; | |
| 2907 | ||
| 2908 | pr ivate tagg edText cre ditStopCod eField; | |
| 2909 | ||
| 2910 | pr ivate site TO facilit yField; | |
| 2911 | ||
| 2912 | pr ivate stri ng buildin gField; | |
| 2913 | ||
| 2914 | pr ivate stri ng floorFi eld; | |
| 2915 | ||
| 2916 | pr ivate stri ng roomFie ld; | |
| 2917 | ||
| 2918 | pr ivate stri ng bedFiel d; | |
| 2919 | ||
| 2920 | pr ivate stri ng statusF ield; | |
| 2921 | ||
| 2922 | pr ivate stri ng phoneFi eld; | |
| 2923 | ||
| 2924 | pr ivate stri ng appoint mentTimest ampField; | |
| 2925 | ||
| 2926 | pr ivate stri ng typeFie ld; | |
| 2927 | ||
| 2928 | pr ivate stri ng physica lLocationF ield; | |
| 2929 | ||
| 2930 | pr ivate bool askForChe ckInField; | |
| 2931 | ||
| 2932 | pr ivate bool askForChe ckInFieldS pecified; | |
| 2933 | ||
| 2934 | pr ivate stri ng appoint mentLength Field; | |
| 2935 | ||
| 2936 | pr ivate stri ng clinicD isplayStar tTimeField ; | |
| 2937 | ||
| 2938 | pr ivate stri ng display Increments Field; | |
| 2939 | ||
| 2940 | pr ivate time SlotArray availabili tyField; | |
| 2941 | ||
| 2942 | pr ivate stri ng maxOver booksPerDa yField; | |
| 2943 | ||
| 2944 | pr ivate stri ng prohibi tAccessToC linicField ; | |
| 2945 | ||
| 2946 | // / <remarks /> | |
| 2947 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 2948 | pu blic strin g id { | |
| 2949 | get { | |
| 2950 | retu rn this.id Field; | |
| 2951 | } | |
| 2952 | set { | |
| 2953 | this .idField = value; | |
| 2954 | this .RaiseProp ertyChange d("id"); | |
| 2955 | } | |
| 2956 | } | |
| 2957 | ||
| 2958 | // / <remarks /> | |
| 2959 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 1)] | |
| 2960 | pu blic strin g name { | |
| 2961 | get { | |
| 2962 | retu rn this.na meField; | |
| 2963 | } | |
| 2964 | set { | |
| 2965 | this .nameField = value; | |
| 2966 | this .RaiseProp ertyChange d("name"); | |
| 2967 | } | |
| 2968 | } | |
| 2969 | ||
| 2970 | // / <remarks /> | |
| 2971 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 2)] | |
| 2972 | pu blic tagge dText depa rtment { | |
| 2973 | get { | |
| 2974 | retu rn this.de partmentFi eld; | |
| 2975 | } | |
| 2976 | set { | |
| 2977 | this .departmen tField = v alue; | |
| 2978 | this .RaiseProp ertyChange d("departm ent"); | |
| 2979 | } | |
| 2980 | } | |
| 2981 | ||
| 2982 | // / <remarks /> | |
| 2983 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 3)] | |
| 2984 | pu blic tagge dText serv ice { | |
| 2985 | get { | |
| 2986 | retu rn this.se rviceField ; | |
| 2987 | } | |
| 2988 | set { | |
| 2989 | this .serviceFi eld = valu e; | |
| 2990 | this .RaiseProp ertyChange d("service "); | |
| 2991 | } | |
| 2992 | } | |
| 2993 | ||
| 2994 | // / <remarks /> | |
| 2995 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 4)] | |
| 2996 | pu blic tagge dText spec ialty { | |
| 2997 | get { | |
| 2998 | retu rn this.sp ecialtyFie ld; | |
| 2999 | } | |
| 3000 | set { | |
| 3001 | this .specialty Field = va lue; | |
| 3002 | this .RaiseProp ertyChange d("special ty"); | |
| 3003 | } | |
| 3004 | } | |
| 3005 | ||
| 3006 | // / <remarks /> | |
| 3007 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 5)] | |
| 3008 | pu blic tagge dText stop Code { | |
| 3009 | get { | |
| 3010 | retu rn this.st opCodeFiel d; | |
| 3011 | } | |
| 3012 | set { | |
| 3013 | this .stopCodeF ield = val ue; | |
| 3014 | this .RaiseProp ertyChange d("stopCod e"); | |
| 3015 | } | |
| 3016 | } | |
| 3017 | ||
| 3018 | // / <remarks /> | |
| 3019 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 6)] | |
| 3020 | pu blic tagge dText cred itStopCode { | |
| 3021 | get { | |
| 3022 | retu rn this.cr editStopCo deField; | |
| 3023 | } | |
| 3024 | set { | |
| 3025 | this .creditSto pCodeField = value; | |
| 3026 | this .RaiseProp ertyChange d("creditS topCode"); | |
| 3027 | } | |
| 3028 | } | |
| 3029 | ||
| 3030 | // / <remarks /> | |
| 3031 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 7)] | |
| 3032 | pu blic siteT O facility { | |
| 3033 | get { | |
| 3034 | retu rn this.fa cilityFiel d; | |
| 3035 | } | |
| 3036 | set { | |
| 3037 | this .facilityF ield = val ue; | |
| 3038 | this .RaiseProp ertyChange d("facilit y"); | |
| 3039 | } | |
| 3040 | } | |
| 3041 | ||
| 3042 | // / <remarks /> | |
| 3043 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 8)] | |
| 3044 | pu blic strin g building { | |
| 3045 | get { | |
| 3046 | retu rn this.bu ildingFiel d; | |
| 3047 | } | |
| 3048 | set { | |
| 3049 | this .buildingF ield = val ue; | |
| 3050 | this .RaiseProp ertyChange d("buildin g"); | |
| 3051 | } | |
| 3052 | } | |
| 3053 | ||
| 3054 | // / <remarks /> | |
| 3055 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 9)] | |
| 3056 | pu blic strin g floor { | |
| 3057 | get { | |
| 3058 | retu rn this.fl oorField; | |
| 3059 | } | |
| 3060 | set { | |
| 3061 | this .floorFiel d = value; | |
| 3062 | this .RaiseProp ertyChange d("floor") ; | |
| 3063 | } | |
| 3064 | } | |
| 3065 | ||
| 3066 | // / <remarks /> | |
| 3067 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 10)] | |
| 3068 | pu blic strin g room { | |
| 3069 | get { | |
| 3070 | retu rn this.ro omField; | |
| 3071 | } | |
| 3072 | set { | |
| 3073 | this .roomField = value; | |
| 3074 | this .RaiseProp ertyChange d("room"); | |
| 3075 | } | |
| 3076 | } | |
| 3077 | ||
| 3078 | // / <remarks /> | |
| 3079 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 11)] | |
| 3080 | pu blic strin g bed { | |
| 3081 | get { | |
| 3082 | retu rn this.be dField; | |
| 3083 | } | |
| 3084 | set { | |
| 3085 | this .bedField = value; | |
| 3086 | this .RaiseProp ertyChange d("bed"); | |
| 3087 | } | |
| 3088 | } | |
| 3089 | ||
| 3090 | // / <remarks /> | |
| 3091 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 12)] | |
| 3092 | pu blic strin g status { | |
| 3093 | get { | |
| 3094 | retu rn this.st atusField; | |
| 3095 | } | |
| 3096 | set { | |
| 3097 | this .statusFie ld = value ; | |
| 3098 | this .RaiseProp ertyChange d("status" ); | |
| 3099 | } | |
| 3100 | } | |
| 3101 | ||
| 3102 | // / <remarks /> | |
| 3103 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 13)] | |
| 3104 | pu blic strin g phone { | |
| 3105 | get { | |
| 3106 | retu rn this.ph oneField; | |
| 3107 | } | |
| 3108 | set { | |
| 3109 | this .phoneFiel d = value; | |
| 3110 | this .RaiseProp ertyChange d("phone") ; | |
| 3111 | } | |
| 3112 | } | |
| 3113 | ||
| 3114 | // / <remarks /> | |
| 3115 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 14)] | |
| 3116 | pu blic strin g appointm entTimesta mp { | |
| 3117 | get { | |
| 3118 | retu rn this.ap pointmentT imestampFi eld; | |
| 3119 | } | |
| 3120 | set { | |
| 3121 | this .appointme ntTimestam pField = v alue; | |
| 3122 | this .RaiseProp ertyChange d("appoint mentTimest amp"); | |
| 3123 | } | |
| 3124 | } | |
| 3125 | ||
| 3126 | // / <remarks /> | |
| 3127 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 15)] | |
| 3128 | pu blic strin g type { | |
| 3129 | get { | |
| 3130 | retu rn this.ty peField; | |
| 3131 | } | |
| 3132 | set { | |
| 3133 | this .typeField = value; | |
| 3134 | this .RaiseProp ertyChange d("type"); | |
| 3135 | } | |
| 3136 | } | |
| 3137 | ||
| 3138 | // / <remarks /> | |
| 3139 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 16)] | |
| 3140 | pu blic strin g physical Location { | |
| 3141 | get { | |
| 3142 | retu rn this.ph ysicalLoca tionField; | |
| 3143 | } | |
| 3144 | set { | |
| 3145 | this .physicalL ocationFie ld = value ; | |
| 3146 | this .RaiseProp ertyChange d("physica lLocation" ); | |
| 3147 | } | |
| 3148 | } | |
| 3149 | ||
| 3150 | // / <remarks /> | |
| 3151 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 17)] | |
| 3152 | pu blic bool askForChec kIn { | |
| 3153 | get { | |
| 3154 | retu rn this.as kForCheckI nField; | |
| 3155 | } | |
| 3156 | set { | |
| 3157 | this .askForChe ckInField = value; | |
| 3158 | this .RaiseProp ertyChange d("askForC heckIn"); | |
| 3159 | } | |
| 3160 | } | |
| 3161 | ||
| 3162 | // / <remarks /> | |
| 3163 | [S ystem.Xml. Serializat ion.XmlIgn oreAttribu te()] | |
| 3164 | pu blic bool askForChec kInSpecifi ed { | |
| 3165 | get { | |
| 3166 | retu rn this.as kForCheckI nFieldSpec ified; | |
| 3167 | } | |
| 3168 | set { | |
| 3169 | this .askForChe ckInFieldS pecified = value; | |
| 3170 | this .RaiseProp ertyChange d("askForC heckInSpec ified"); | |
| 3171 | } | |
| 3172 | } | |
| 3173 | ||
| 3174 | // / <remarks /> | |
| 3175 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 18)] | |
| 3176 | pu blic strin g appointm entLength { | |
| 3177 | get { | |
| 3178 | retu rn this.ap pointmentL engthField ; | |
| 3179 | } | |
| 3180 | set { | |
| 3181 | this .appointme ntLengthFi eld = valu e; | |
| 3182 | this .RaiseProp ertyChange d("appoint mentLength "); | |
| 3183 | } | |
| 3184 | } | |
| 3185 | ||
| 3186 | // / <remarks /> | |
| 3187 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 19)] | |
| 3188 | pu blic strin g clinicDi splayStart Time { | |
| 3189 | get { | |
| 3190 | retu rn this.cl inicDispla yStartTime Field; | |
| 3191 | } | |
| 3192 | set { | |
| 3193 | this .clinicDis playStartT imeField = value; | |
| 3194 | this .RaiseProp ertyChange d("clinicD isplayStar tTime"); | |
| 3195 | } | |
| 3196 | } | |
| 3197 | ||
| 3198 | // / <remarks /> | |
| 3199 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 20)] | |
| 3200 | pu blic strin g displayI ncrements { | |
| 3201 | get { | |
| 3202 | retu rn this.di splayIncre mentsField ; | |
| 3203 | } | |
| 3204 | set { | |
| 3205 | this .displayIn crementsFi eld = valu e; | |
| 3206 | this .RaiseProp ertyChange d("display Increments "); | |
| 3207 | } | |
| 3208 | } | |
| 3209 | ||
| 3210 | // / <remarks /> | |
| 3211 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 21)] | |
| 3212 | pu blic timeS lotArray a vailabilit y { | |
| 3213 | get { | |
| 3214 | retu rn this.av ailability Field; | |
| 3215 | } | |
| 3216 | set { | |
| 3217 | this .availabil ityField = value; | |
| 3218 | this .RaiseProp ertyChange d("availab ility"); | |
| 3219 | } | |
| 3220 | } | |
| 3221 | ||
| 3222 | // / <remarks /> | |
| 3223 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 22)] | |
| 3224 | pu blic strin g maxOverb ooksPerDay { | |
| 3225 | get { | |
| 3226 | retu rn this.ma xOverbooks PerDayFiel d; | |
| 3227 | } | |
| 3228 | set { | |
| 3229 | this .maxOverbo oksPerDayF ield = val ue; | |
| 3230 | this .RaiseProp ertyChange d("maxOver booksPerDa y"); | |
| 3231 | } | |
| 3232 | } | |
| 3233 | ||
| 3234 | // / <remarks /> | |
| 3235 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 23)] | |
| 3236 | pu blic strin g prohibit AccessToCl inic { | |
| 3237 | get { | |
| 3238 | retu rn this.pr ohibitAcce ssToClinic Field; | |
| 3239 | } | |
| 3240 | set { | |
| 3241 | this .prohibitA ccessToCli nicField = value; | |
| 3242 | this .RaiseProp ertyChange d("prohibi tAccessToC linic"); | |
| 3243 | } | |
| 3244 | } | |
| 3245 | } | |
| 3246 | ||
| 3247 | /// <r emarks/> | |
| 3248 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 3249 | [Syste m.Serializ ableAttrib ute()] | |
| 3250 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 3251 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 3252 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 3253 | public partial c lass textA rray : abs tractArray TO { | |
| 3254 | ||
| 3255 | pr ivate stri ng[] textF ield; | |
| 3256 | ||
| 3257 | // / <remarks /> | |
| 3258 | [S ystem.Xml. Serializat ion.XmlArr ayAttribut e(Form=Sys tem.Xml.Sc hema.XmlSc hemaForm.U nqualified , Order=0) ] | |
| 3259 | [S ystem.Xml. Serializat ion.XmlArr ayItemAttr ibute(Form =System.Xm l.Schema.X mlSchemaFo rm.Unquali fied, IsNu llable=fal se)] | |
| 3260 | pu blic strin g[] text { | |
| 3261 | get { | |
| 3262 | retu rn this.te xtField; | |
| 3263 | } | |
| 3264 | set { | |
| 3265 | this .textField = value; | |
| 3266 | this .RaiseProp ertyChange d("text"); | |
| 3267 | } | |
| 3268 | } | |
| 3269 | } | |
| 3270 | ||
| 3271 | /// <r emarks/> | |
| 3272 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 3273 | [Syste m.Serializ ableAttrib ute()] | |
| 3274 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 3275 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 3276 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 3277 | public partial c lass textT O : abstra ctTO { | |
| 3278 | ||
| 3279 | pr ivate stri ng textFie ld; | |
| 3280 | ||
| 3281 | // / <remarks /> | |
| 3282 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 3283 | pu blic strin g text { | |
| 3284 | get { | |
| 3285 | retu rn this.te xtField; | |
| 3286 | } | |
| 3287 | set { | |
| 3288 | this .textField = value; | |
| 3289 | this .RaiseProp ertyChange d("text"); | |
| 3290 | } | |
| 3291 | } | |
| 3292 | } | |
| 3293 | ||
| 3294 | /// <r emarks/> | |
| 3295 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 3296 | [Syste m.Serializ ableAttrib ute()] | |
| 3297 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 3298 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 3299 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 3300 | public partial c lass patie nt : objec t, System. ComponentM odel.INoti fyProperty Changed { | |
| 3301 | ||
| 3302 | pr ivate stri ng nameFie ld; | |
| 3303 | ||
| 3304 | pr ivate stri ng localPi dField; | |
| 3305 | ||
| 3306 | pr ivate stri ng localSi teIdField; | |
| 3307 | ||
| 3308 | pr ivate stri ng mpiPidF ield; | |
| 3309 | ||
| 3310 | pr ivate stri ng vistaLo cationsFie ld; | |
| 3311 | ||
| 3312 | pr ivate stri ng ssnFiel d; | |
| 3313 | ||
| 3314 | pr ivate stri ng inPatie ntField; | |
| 3315 | ||
| 3316 | pr ivate stri ng ageFiel d; | |
| 3317 | ||
| 3318 | pr ivate stri ng genderF ield; | |
| 3319 | ||
| 3320 | pr ivate stri ng scPerce ntageField ; | |
| 3321 | ||
| 3322 | // / <remarks /> | |
| 3323 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 3324 | pu blic strin g name { | |
| 3325 | get { | |
| 3326 | retu rn this.na meField; | |
| 3327 | } | |
| 3328 | set { | |
| 3329 | this .nameField = value; | |
| 3330 | this .RaiseProp ertyChange d("name"); | |
| 3331 | } | |
| 3332 | } | |
| 3333 | ||
| 3334 | // / <remarks /> | |
| 3335 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 1)] | |
| 3336 | pu blic strin g localPid { | |
| 3337 | get { | |
| 3338 | retu rn this.lo calPidFiel d; | |
| 3339 | } | |
| 3340 | set { | |
| 3341 | this .localPidF ield = val ue; | |
| 3342 | this .RaiseProp ertyChange d("localPi d"); | |
| 3343 | } | |
| 3344 | } | |
| 3345 | ||
| 3346 | // / <remarks /> | |
| 3347 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 2)] | |
| 3348 | pu blic strin g localSit eId { | |
| 3349 | get { | |
| 3350 | retu rn this.lo calSiteIdF ield; | |
| 3351 | } | |
| 3352 | set { | |
| 3353 | this .localSite IdField = value; | |
| 3354 | this .RaiseProp ertyChange d("localSi teId"); | |
| 3355 | } | |
| 3356 | } | |
| 3357 | ||
| 3358 | // / <remarks /> | |
| 3359 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 3)] | |
| 3360 | pu blic strin g mpiPid { | |
| 3361 | get { | |
| 3362 | retu rn this.mp iPidField; | |
| 3363 | } | |
| 3364 | set { | |
| 3365 | this .mpiPidFie ld = value ; | |
| 3366 | this .RaiseProp ertyChange d("mpiPid" ); | |
| 3367 | } | |
| 3368 | } | |
| 3369 | ||
| 3370 | // / <remarks /> | |
| 3371 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 4)] | |
| 3372 | pu blic strin g vistaLoc ations { | |
| 3373 | get { | |
| 3374 | retu rn this.vi staLocatio nsField; | |
| 3375 | } | |
| 3376 | set { | |
| 3377 | this .vistaLoca tionsField = value; | |
| 3378 | this .RaiseProp ertyChange d("vistaLo cations"); | |
| 3379 | } | |
| 3380 | } | |
| 3381 | ||
| 3382 | // / <remarks /> | |
| 3383 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 5)] | |
| 3384 | pu blic strin g ssn { | |
| 3385 | get { | |
| 3386 | retu rn this.ss nField; | |
| 3387 | } | |
| 3388 | set { | |
| 3389 | this .ssnField = value; | |
| 3390 | this .RaiseProp ertyChange d("ssn"); | |
| 3391 | } | |
| 3392 | } | |
| 3393 | ||
| 3394 | // / <remarks /> | |
| 3395 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 6)] | |
| 3396 | pu blic strin g inPatien t { | |
| 3397 | get { | |
| 3398 | retu rn this.in PatientFie ld; | |
| 3399 | } | |
| 3400 | set { | |
| 3401 | this .inPatient Field = va lue; | |
| 3402 | this .RaiseProp ertyChange d("inPatie nt"); | |
| 3403 | } | |
| 3404 | } | |
| 3405 | ||
| 3406 | // / <remarks /> | |
| 3407 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 7)] | |
| 3408 | pu blic strin g age { | |
| 3409 | get { | |
| 3410 | retu rn this.ag eField; | |
| 3411 | } | |
| 3412 | set { | |
| 3413 | this .ageField = value; | |
| 3414 | this .RaiseProp ertyChange d("age"); | |
| 3415 | } | |
| 3416 | } | |
| 3417 | ||
| 3418 | // / <remarks /> | |
| 3419 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 8)] | |
| 3420 | pu blic strin g gender { | |
| 3421 | get { | |
| 3422 | retu rn this.ge nderField; | |
| 3423 | } | |
| 3424 | set { | |
| 3425 | this .genderFie ld = value ; | |
| 3426 | this .RaiseProp ertyChange d("gender" ); | |
| 3427 | } | |
| 3428 | } | |
| 3429 | ||
| 3430 | // / <remarks /> | |
| 3431 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 9)] | |
| 3432 | pu blic strin g scPercen tage { | |
| 3433 | get { | |
| 3434 | retu rn this.sc Percentage Field; | |
| 3435 | } | |
| 3436 | set { | |
| 3437 | this .scPercent ageField = value; | |
| 3438 | this .RaiseProp ertyChange d("scPerce ntage"); | |
| 3439 | } | |
| 3440 | } | |
| 3441 | ||
| 3442 | pu blic event System.Co mponentMod el.Propert yChangedEv entHandler PropertyC hanged; | |
| 3443 | ||
| 3444 | pr otected vo id RaisePr opertyChan ged(string propertyN ame) { | |
| 3445 | System.C omponentMo del.Proper tyChangedE ventHandle r property Changed = this.Prope rtyChanged ; | |
| 3446 | if ((pro pertyChang ed != null )) { | |
| 3447 | prop ertyChange d(this, ne w System.C omponentMo del.Proper tyChangedE ventArgs(p ropertyNam e)); | |
| 3448 | } | |
| 3449 | } | |
| 3450 | } | |
| 3451 | ||
| 3452 | /// <r emarks/> | |
| 3453 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 3454 | [Syste m.Serializ ableAttrib ute()] | |
| 3455 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 3456 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 3457 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 3458 | public partial c lass provi der : obje ct, System .Component Model.INot ifyPropert yChanged { | |
| 3459 | ||
| 3460 | pr ivate stri ng nameFie ld; | |
| 3461 | ||
| 3462 | pr ivate stri ng userIdF ield; | |
| 3463 | ||
| 3464 | pr ivate stri ng loginSi teCodeFiel d; | |
| 3465 | ||
| 3466 | pr ivate stri ng context MenuField; | |
| 3467 | ||
| 3468 | pr ivate stri ng vistaLo cationsFie ld; | |
| 3469 | ||
| 3470 | // / <remarks /> | |
| 3471 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 3472 | pu blic strin g name { | |
| 3473 | get { | |
| 3474 | retu rn this.na meField; | |
| 3475 | } | |
| 3476 | set { | |
| 3477 | this .nameField = value; | |
| 3478 | this .RaiseProp ertyChange d("name"); | |
| 3479 | } | |
| 3480 | } | |
| 3481 | ||
| 3482 | // / <remarks /> | |
| 3483 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 1)] | |
| 3484 | pu blic strin g userId { | |
| 3485 | get { | |
| 3486 | retu rn this.us erIdField; | |
| 3487 | } | |
| 3488 | set { | |
| 3489 | this .userIdFie ld = value ; | |
| 3490 | this .RaiseProp ertyChange d("userId" ); | |
| 3491 | } | |
| 3492 | } | |
| 3493 | ||
| 3494 | // / <remarks /> | |
| 3495 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 2)] | |
| 3496 | pu blic strin g loginSit eCode { | |
| 3497 | get { | |
| 3498 | retu rn this.lo ginSiteCod eField; | |
| 3499 | } | |
| 3500 | set { | |
| 3501 | this .loginSite CodeField = value; | |
| 3502 | this .RaiseProp ertyChange d("loginSi teCode"); | |
| 3503 | } | |
| 3504 | } | |
| 3505 | ||
| 3506 | // / <remarks /> | |
| 3507 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 3)] | |
| 3508 | pu blic strin g contextM enu { | |
| 3509 | get { | |
| 3510 | retu rn this.co ntextMenuF ield; | |
| 3511 | } | |
| 3512 | set { | |
| 3513 | this .contextMe nuField = value; | |
| 3514 | this .RaiseProp ertyChange d("context Menu"); | |
| 3515 | } | |
| 3516 | } | |
| 3517 | ||
| 3518 | // / <remarks /> | |
| 3519 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 4)] | |
| 3520 | pu blic strin g vistaLoc ations { | |
| 3521 | get { | |
| 3522 | retu rn this.vi staLocatio nsField; | |
| 3523 | } | |
| 3524 | set { | |
| 3525 | this .vistaLoca tionsField = value; | |
| 3526 | this .RaiseProp ertyChange d("vistaLo cations"); | |
| 3527 | } | |
| 3528 | } | |
| 3529 | ||
| 3530 | pu blic event System.Co mponentMod el.Propert yChangedEv entHandler PropertyC hanged; | |
| 3531 | ||
| 3532 | pr otected vo id RaisePr opertyChan ged(string propertyN ame) { | |
| 3533 | System.C omponentMo del.Proper tyChangedE ventHandle r property Changed = this.Prope rtyChanged ; | |
| 3534 | if ((pro pertyChang ed != null )) { | |
| 3535 | prop ertyChange d(this, ne w System.C omponentMo del.Proper tyChangedE ventArgs(p ropertyNam e)); | |
| 3536 | } | |
| 3537 | } | |
| 3538 | } | |
| 3539 | ||
| 3540 | /// <r emarks/> | |
| 3541 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. Xml", "4.6 .1067.0")] | |
| 3542 | [Syste m.Serializ ableAttrib ute()] | |
| 3543 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 3544 | [Syste m.Componen tModel.Des ignerCateg oryAttribu te("code") ] | |
| 3545 | [System.Xm l.Serializ ation.XmlT ypeAttribu te(Namespa ce="http:/ / DNS . URL /")] | |
| 3546 | public partial c lass query Bean : obj ect, Syste m.Componen tModel.INo tifyProper tyChanged { | |
| 3547 | ||
| 3548 | pr ivate prov ider provi derField; | |
| 3549 | ||
| 3550 | pr ivate pati ent patien tField; | |
| 3551 | ||
| 3552 | pr ivate stri ng recordS iteCodeFie ld; | |
| 3553 | ||
| 3554 | pr ivate stri ng request ingAppFiel d; | |
| 3555 | ||
| 3556 | pr ivate stri ng activeF ield; | |
| 3557 | ||
| 3558 | pr ivate stri ng endDate Field; | |
| 3559 | ||
| 3560 | pr ivate stri ng startDa teField; | |
| 3561 | ||
| 3562 | pr ivate stri ng maxReco rdsField; | |
| 3563 | ||
| 3564 | pr ivate stri ng statusF ield; | |
| 3565 | ||
| 3566 | pr ivate stri ng supplem entalParam etersField ; | |
| 3567 | ||
| 3568 | pr ivate stri ng itemIdF ield; | |
| 3569 | ||
| 3570 | pr ivate stri ng targetF ield; | |
| 3571 | ||
| 3572 | pr ivate stri ng criteri aField; | |
| 3573 | ||
| 3574 | pr ivate stri ng typeFie ld; | |
| 3575 | ||
| 3576 | pr ivate stri ng directi onField; | |
| 3577 | ||
| 3578 | pr ivate stri ng nameFie ld; | |
| 3579 | ||
| 3580 | pr ivate bool multiSite QueryField ; | |
| 3581 | ||
| 3582 | pr ivate stri ng consumi ngAppToken Field; | |
| 3583 | ||
| 3584 | pr ivate stri ng consumi ngAppPassw ordField; | |
| 3585 | ||
| 3586 | // / <remarks /> | |
| 3587 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 0)] | |
| 3588 | pu blic provi der provid er { | |
| 3589 | get { | |
| 3590 | retu rn this.pr oviderFiel d; | |
| 3591 | } | |
| 3592 | set { | |
| 3593 | this .providerF ield = val ue; | |
| 3594 | this .RaiseProp ertyChange d("provide r"); | |
| 3595 | } | |
| 3596 | } | |
| 3597 | ||
| 3598 | // / <remarks /> | |
| 3599 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 1)] | |
| 3600 | pu blic patie nt patient { | |
| 3601 | get { | |
| 3602 | retu rn this.pa tientField ; | |
| 3603 | } | |
| 3604 | set { | |
| 3605 | this .patientFi eld = valu e; | |
| 3606 | this .RaiseProp ertyChange d("patient "); | |
| 3607 | } | |
| 3608 | } | |
| 3609 | ||
| 3610 | // / <remarks /> | |
| 3611 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 2)] | |
| 3612 | pu blic strin g recordSi teCode { | |
| 3613 | get { | |
| 3614 | retu rn this.re cordSiteCo deField; | |
| 3615 | } | |
| 3616 | set { | |
| 3617 | this .recordSit eCodeField = value; | |
| 3618 | this .RaiseProp ertyChange d("recordS iteCode"); | |
| 3619 | } | |
| 3620 | } | |
| 3621 | ||
| 3622 | // / <remarks /> | |
| 3623 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 3)] | |
| 3624 | pu blic strin g requesti ngApp { | |
| 3625 | get { | |
| 3626 | retu rn this.re questingAp pField; | |
| 3627 | } | |
| 3628 | set { | |
| 3629 | this .requestin gAppField = value; | |
| 3630 | this .RaiseProp ertyChange d("request ingApp"); | |
| 3631 | } | |
| 3632 | } | |
| 3633 | ||
| 3634 | // / <remarks /> | |
| 3635 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 4)] | |
| 3636 | pu blic strin g active { | |
| 3637 | get { | |
| 3638 | retu rn this.ac tiveField; | |
| 3639 | } | |
| 3640 | set { | |
| 3641 | this .activeFie ld = value ; | |
| 3642 | this .RaiseProp ertyChange d("active" ); | |
| 3643 | } | |
| 3644 | } | |
| 3645 | ||
| 3646 | // / <remarks /> | |
| 3647 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 5)] | |
| 3648 | pu blic strin g endDate { | |
| 3649 | get { | |
| 3650 | retu rn this.en dDateField ; | |
| 3651 | } | |
| 3652 | set { | |
| 3653 | this .endDateFi eld = valu e; | |
| 3654 | this .RaiseProp ertyChange d("endDate "); | |
| 3655 | } | |
| 3656 | } | |
| 3657 | ||
| 3658 | // / <remarks /> | |
| 3659 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 6)] | |
| 3660 | pu blic strin g startDat e { | |
| 3661 | get { | |
| 3662 | retu rn this.st artDateFie ld; | |
| 3663 | } | |
| 3664 | set { | |
| 3665 | this .startDate Field = va lue; | |
| 3666 | this .RaiseProp ertyChange d("startDa te"); | |
| 3667 | } | |
| 3668 | } | |
| 3669 | ||
| 3670 | // / <remarks /> | |
| 3671 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 7)] | |
| 3672 | pu blic strin g maxRecor ds { | |
| 3673 | get { | |
| 3674 | retu rn this.ma xRecordsFi eld; | |
| 3675 | } | |
| 3676 | set { | |
| 3677 | this .maxRecord sField = v alue; | |
| 3678 | this .RaiseProp ertyChange d("maxReco rds"); | |
| 3679 | } | |
| 3680 | } | |
| 3681 | ||
| 3682 | // / <remarks /> | |
| 3683 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 8)] | |
| 3684 | pu blic strin g status { | |
| 3685 | get { | |
| 3686 | retu rn this.st atusField; | |
| 3687 | } | |
| 3688 | set { | |
| 3689 | this .statusFie ld = value ; | |
| 3690 | this .RaiseProp ertyChange d("status" ); | |
| 3691 | } | |
| 3692 | } | |
| 3693 | ||
| 3694 | // / <remarks /> | |
| 3695 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 9)] | |
| 3696 | pu blic strin g suppleme ntalParame ters { | |
| 3697 | get { | |
| 3698 | retu rn this.su pplemental Parameters Field; | |
| 3699 | } | |
| 3700 | set { | |
| 3701 | this .supplemen talParamet ersField = value; | |
| 3702 | this .RaiseProp ertyChange d("supplem entalParam eters"); | |
| 3703 | } | |
| 3704 | } | |
| 3705 | ||
| 3706 | // / <remarks /> | |
| 3707 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 10)] | |
| 3708 | pu blic strin g itemId { | |
| 3709 | get { | |
| 3710 | retu rn this.it emIdField; | |
| 3711 | } | |
| 3712 | set { | |
| 3713 | this .itemIdFie ld = value ; | |
| 3714 | this .RaiseProp ertyChange d("itemId" ); | |
| 3715 | } | |
| 3716 | } | |
| 3717 | ||
| 3718 | // / <remarks /> | |
| 3719 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 11)] | |
| 3720 | pu blic strin g target { | |
| 3721 | get { | |
| 3722 | retu rn this.ta rgetField; | |
| 3723 | } | |
| 3724 | set { | |
| 3725 | this .targetFie ld = value ; | |
| 3726 | this .RaiseProp ertyChange d("target" ); | |
| 3727 | } | |
| 3728 | } | |
| 3729 | ||
| 3730 | // / <remarks /> | |
| 3731 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 12)] | |
| 3732 | pu blic strin g criteria { | |
| 3733 | get { | |
| 3734 | retu rn this.cr iteriaFiel d; | |
| 3735 | } | |
| 3736 | set { | |
| 3737 | this .criteriaF ield = val ue; | |
| 3738 | this .RaiseProp ertyChange d("criteri a"); | |
| 3739 | } | |
| 3740 | } | |
| 3741 | ||
| 3742 | // / <remarks /> | |
| 3743 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 13)] | |
| 3744 | pu blic strin g type { | |
| 3745 | get { | |
| 3746 | retu rn this.ty peField; | |
| 3747 | } | |
| 3748 | set { | |
| 3749 | this .typeField = value; | |
| 3750 | this .RaiseProp ertyChange d("type"); | |
| 3751 | } | |
| 3752 | } | |
| 3753 | ||
| 3754 | // / <remarks /> | |
| 3755 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 14)] | |
| 3756 | pu blic strin g directio n { | |
| 3757 | get { | |
| 3758 | retu rn this.di rectionFie ld; | |
| 3759 | } | |
| 3760 | set { | |
| 3761 | this .direction Field = va lue; | |
| 3762 | this .RaiseProp ertyChange d("directi on"); | |
| 3763 | } | |
| 3764 | } | |
| 3765 | ||
| 3766 | // / <remarks /> | |
| 3767 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 15)] | |
| 3768 | pu blic strin g name { | |
| 3769 | get { | |
| 3770 | retu rn this.na meField; | |
| 3771 | } | |
| 3772 | set { | |
| 3773 | this .nameField = value; | |
| 3774 | this .RaiseProp ertyChange d("name"); | |
| 3775 | } | |
| 3776 | } | |
| 3777 | ||
| 3778 | // / <remarks /> | |
| 3779 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 16)] | |
| 3780 | pu blic bool multiSiteQ uery { | |
| 3781 | get { | |
| 3782 | retu rn this.mu ltiSiteQue ryField; | |
| 3783 | } | |
| 3784 | set { | |
| 3785 | this .multiSite QueryField = value; | |
| 3786 | this .RaiseProp ertyChange d("multiSi teQuery"); | |
| 3787 | } | |
| 3788 | } | |
| 3789 | ||
| 3790 | // / <remarks /> | |
| 3791 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 17)] | |
| 3792 | pu blic strin g consumin gAppToken { | |
| 3793 | get { | |
| 3794 | retu rn this.co nsumingApp TokenField ; | |
| 3795 | } | |
| 3796 | set { | |
| 3797 | this .consuming AppTokenFi eld = valu e; | |
| 3798 | this .RaiseProp ertyChange d("consumi ngAppToken "); | |
| 3799 | } | |
| 3800 | } | |
| 3801 | ||
| 3802 | // / <remarks /> | |
| 3803 | [S ystem.Xml. Serializat ion.XmlEle mentAttrib ute(Form=S ystem.Xml. Schema.Xml SchemaForm .Unqualifi ed, Order= 18)] | |
| 3804 | pu blic strin g consumin gAppPasswo rd { | |
| 3805 | get { | |
| 3806 | retu rn this.co nsumingApp PasswordFi eld; | |
| 3807 | } | |
| 3808 | set { | |
| 3809 | this .consuming AppPasswor dField = v alue; | |
| 3810 | this .RaiseProp ertyChange d("consumi ngAppPassw ord"); | |
| 3811 | } | |
| 3812 | } | |
| 3813 | ||
| 3814 | pu blic event System.Co mponentMod el.Propert yChangedEv entHandler PropertyC hanged; | |
| 3815 | ||
| 3816 | pr otected vo id RaisePr opertyChan ged(string propertyN ame) { | |
| 3817 | System.C omponentMo del.Proper tyChangedE ventHandle r property Changed = this.Prope rtyChanged ; | |
| 3818 | if ((pro pertyChang ed != null )) { | |
| 3819 | prop ertyChange d(this, ne w System.C omponentMo del.Proper tyChangedE ventArgs(p ropertyNam e)); | |
| 3820 | } | |
| 3821 | } | |
| 3822 | } | |
| 3823 | ||
| 3824 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. ServiceMod el", "4.0. 0.0")] | |
| 3825 | [System.Se rviceModel .ServiceCo ntractAttr ibute(Name space="htt p:// DNS . URL /", Config urationNam e="Backgro undProcess Service.Ba ckgroundPr ocessServi ceInterfac e")] | |
| 3826 | intern al interfa ce Backgro undProcess ServiceInt erface { | |
| 3827 | ||
| 3828 | [S ystem.Serv iceModel.O perationCo ntractAttr ibute(Acti on="", Rep lyAction=" *")] | |
| 3829 | [S ystem.Serv iceModel.X mlSerializ erFormatAt tribute(Su pportFault s=true)] | |
| 3830 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(abstract TO))] | |
| 3831 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(string[] ))] | |
| 3832 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(taggedTe xt[]))] | |
| 3833 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(addressT O[]))] | |
| 3834 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(phoneNum TO[]))] | |
| 3835 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(demograp hicSetTO[] ))] | |
| 3836 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(dataSour ceTO[]))] | |
| 3837 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(siteTO[] ))] | |
| 3838 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(timeSlot TO[]))] | |
| 3839 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(personTO []))] | |
| 3840 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(labSiteS pecimenTO[ ]))] | |
| 3841 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(division []))] | |
| 3842 | BM S.VistaInt egration.V ia.Backgro undProcess Service.ge tBMSDataRe sponse get BMSData(BM S.VistaInt egration.V ia.Backgro undProcess Service.ge tBMSData r equest); | |
| 3843 | ||
| 3844 | [S ystem.Serv iceModel.O perationCo ntractAttr ibute(Acti on="", Rep lyAction=" *")] | |
| 3845 | [S ystem.Serv iceModel.X mlSerializ erFormatAt tribute(Su pportFault s=true)] | |
| 3846 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(abstract TO))] | |
| 3847 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(string[] ))] | |
| 3848 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(taggedTe xt[]))] | |
| 3849 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(addressT O[]))] | |
| 3850 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(phoneNum TO[]))] | |
| 3851 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(demograp hicSetTO[] ))] | |
| 3852 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(dataSour ceTO[]))] | |
| 3853 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(siteTO[] ))] | |
| 3854 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(timeSlot TO[]))] | |
| 3855 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(personTO []))] | |
| 3856 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(labSiteS pecimenTO[ ]))] | |
| 3857 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(division []))] | |
| 3858 | BM S.VistaInt egration.V ia.Backgro undProcess Service.ge tSiteIdRes ponse getS iteId(BMS. VistaInteg ration.Via .Backgroun dProcessSe rvice.getS iteId requ est); | |
| 3859 | ||
| 3860 | [S ystem.Serv iceModel.O perationCo ntractAttr ibute(Acti on="", Rep lyAction=" *")] | |
| 3861 | [S ystem.Serv iceModel.F aultContra ctAttribut e(typeof(B MS.VistaIn tegration. Via.Backgr oundProces sService.V alidationE xception), Action="" , Name="Va lidationEx ception")] | |
| 3862 | [S ystem.Serv iceModel.X mlSerializ erFormatAt tribute(Su pportFault s=true)] | |
| 3863 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(abstract TO))] | |
| 3864 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(string[] ))] | |
| 3865 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(taggedTe xt[]))] | |
| 3866 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(addressT O[]))] | |
| 3867 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(phoneNum TO[]))] | |
| 3868 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(demograp hicSetTO[] ))] | |
| 3869 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(dataSour ceTO[]))] | |
| 3870 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(siteTO[] ))] | |
| 3871 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(timeSlot TO[]))] | |
| 3872 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(personTO []))] | |
| 3873 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(labSiteS pecimenTO[ ]))] | |
| 3874 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(division []))] | |
| 3875 | BM S.VistaInt egration.V ia.Backgro undProcess Service.ba tchLoginRe sponse bat chLogin(BM S.VistaInt egration.V ia.Backgro undProcess Service.ba tchLogin r equest); | |
| 3876 | ||
| 3877 | [S ystem.Serv iceModel.O perationCo ntractAttr ibute(Acti on="", Rep lyAction=" *")] | |
| 3878 | [S ystem.Serv iceModel.F aultContra ctAttribut e(typeof(B MS.VistaIn tegration. Via.Backgr oundProces sService.V alidationE xception), Action="" , Name="Va lidationEx ception")] | |
| 3879 | [S ystem.Serv iceModel.X mlSerializ erFormatAt tribute(Su pportFault s=true)] | |
| 3880 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(abstract TO))] | |
| 3881 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(string[] ))] | |
| 3882 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(taggedTe xt[]))] | |
| 3883 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(addressT O[]))] | |
| 3884 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(phoneNum TO[]))] | |
| 3885 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(demograp hicSetTO[] ))] | |
| 3886 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(dataSour ceTO[]))] | |
| 3887 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(siteTO[] ))] | |
| 3888 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(timeSlot TO[]))] | |
| 3889 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(personTO []))] | |
| 3890 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(labSiteS pecimenTO[ ]))] | |
| 3891 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(division []))] | |
| 3892 | BM S.VistaInt egration.V ia.Backgro undProcess Service.lo ginVIAResp onse login VIA(BMS.Vi staIntegra tion.Via.B ackgroundP rocessServ ice.loginV IA request ); | |
| 3893 | ||
| 3894 | [S ystem.Serv iceModel.O perationCo ntractAttr ibute(Acti on="", Rep lyAction=" *")] | |
| 3895 | [S ystem.Serv iceModel.X mlSerializ erFormatAt tribute(Su pportFault s=true)] | |
| 3896 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(abstract TO))] | |
| 3897 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(string[] ))] | |
| 3898 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(taggedTe xt[]))] | |
| 3899 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(addressT O[]))] | |
| 3900 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(phoneNum TO[]))] | |
| 3901 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(demograp hicSetTO[] ))] | |
| 3902 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(dataSour ceTO[]))] | |
| 3903 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(siteTO[] ))] | |
| 3904 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(timeSlot TO[]))] | |
| 3905 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(personTO []))] | |
| 3906 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(labSiteS pecimenTO[ ]))] | |
| 3907 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(division []))] | |
| 3908 | BM S.VistaInt egration.V ia.Backgro undProcess Service.se lectRespon se select( BMS.VistaI ntegration .Via.Backg roundProce ssService. select req uest); | |
| 3909 | ||
| 3910 | [S ystem.Serv iceModel.O perationCo ntractAttr ibute(Acti on="", Rep lyAction=" *")] | |
| 3911 | [S ystem.Serv iceModel.X mlSerializ erFormatAt tribute(Su pportFault s=true)] | |
| 3912 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(abstract TO))] | |
| 3913 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(string[] ))] | |
| 3914 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(taggedTe xt[]))] | |
| 3915 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(addressT O[]))] | |
| 3916 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(phoneNum TO[]))] | |
| 3917 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(demograp hicSetTO[] ))] | |
| 3918 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(dataSour ceTO[]))] | |
| 3919 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(siteTO[] ))] | |
| 3920 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(timeSlot TO[]))] | |
| 3921 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(personTO []))] | |
| 3922 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(labSiteS pecimenTO[ ]))] | |
| 3923 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(division []))] | |
| 3924 | BM S.VistaInt egration.V ia.Backgro undProcess Service.ge tEFRLabDat aResponse getEFRLabD ata(BMS.Vi staIntegra tion.Via.B ackgroundP rocessServ ice.getEFR LabData re quest); | |
| 3925 | ||
| 3926 | [S ystem.Serv iceModel.O perationCo ntractAttr ibute(Acti on="", Rep lyAction=" *")] | |
| 3927 | [S ystem.Serv iceModel.X mlSerializ erFormatAt tribute(Su pportFault s=true)] | |
| 3928 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(abstract TO))] | |
| 3929 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(string[] ))] | |
| 3930 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(taggedTe xt[]))] | |
| 3931 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(addressT O[]))] | |
| 3932 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(phoneNum TO[]))] | |
| 3933 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(demograp hicSetTO[] ))] | |
| 3934 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(dataSour ceTO[]))] | |
| 3935 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(siteTO[] ))] | |
| 3936 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(timeSlot TO[]))] | |
| 3937 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(personTO []))] | |
| 3938 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(labSiteS pecimenTO[ ]))] | |
| 3939 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(division []))] | |
| 3940 | BM S.VistaInt egration.V ia.Backgro undProcess Service.ge tVersionRe sponse get Version(BM S.VistaInt egration.V ia.Backgro undProcess Service.ge tVersion r equest); | |
| 3941 | ||
| 3942 | [S ystem.Serv iceModel.O perationCo ntractAttr ibute(Acti on="", Rep lyAction=" *")] | |
| 3943 | [S ystem.Serv iceModel.X mlSerializ erFormatAt tribute(Su pportFault s=true)] | |
| 3944 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(abstract TO))] | |
| 3945 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(string[] ))] | |
| 3946 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(taggedTe xt[]))] | |
| 3947 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(addressT O[]))] | |
| 3948 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(phoneNum TO[]))] | |
| 3949 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(demograp hicSetTO[] ))] | |
| 3950 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(dataSour ceTO[]))] | |
| 3951 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(siteTO[] ))] | |
| 3952 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(timeSlot TO[]))] | |
| 3953 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(personTO []))] | |
| 3954 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(labSiteS pecimenTO[ ]))] | |
| 3955 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(division []))] | |
| 3956 | BM S.VistaInt egration.V ia.Backgro undProcess Service.ge tLaborator yTestDataR esponse ge tLaborator yTestData( BMS.VistaI ntegration .Via.Backg roundProce ssService. getLaborat oryTestDat a request) ; | |
| 3957 | ||
| 3958 | [S ystem.Serv iceModel.O perationCo ntractAttr ibute(Acti on="", Rep lyAction=" *")] | |
| 3959 | [S ystem.Serv iceModel.X mlSerializ erFormatAt tribute(Su pportFault s=true)] | |
| 3960 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(abstract TO))] | |
| 3961 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(string[] ))] | |
| 3962 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(taggedTe xt[]))] | |
| 3963 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(addressT O[]))] | |
| 3964 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(phoneNum TO[]))] | |
| 3965 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(demograp hicSetTO[] ))] | |
| 3966 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(dataSour ceTO[]))] | |
| 3967 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(siteTO[] ))] | |
| 3968 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(timeSlot TO[]))] | |
| 3969 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(personTO []))] | |
| 3970 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(labSiteS pecimenTO[ ]))] | |
| 3971 | [S ystem.Serv iceModel.S erviceKnow nTypeAttri bute(typeo f(division []))] | |
| 3972 | BM S.VistaInt egration.V ia.Backgro undProcess Service.ge tSiteRespo nse getSit e(BMS.Vist aIntegrati on.Via.Bac kgroundPro cessServic e.getSite request); | |
| 3973 | } | |
| 3974 | ||
| 3975 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 3976 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. ServiceMod el", "4.0. 0.0")] | |
| 3977 | [System.Se rviceModel .MessageCo ntractAttr ibute(Wrap perName="g etBMSData" , WrapperN amespace=" http:// DNS . URL /", IsWrap ped=true)] | |
| 3978 | intern al partial class get BMSData { | |
| 3979 | ||
| 3980 | [System.Se rviceModel .MessageBo dyMemberAt tribute(Na mespace="h ttp:// DNS . URL /", Order= 0)] | |
| 3981 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.query Bean query Bean; | |
| 3982 | ||
| 3983 | pu blic getBM SData() { | |
| 3984 | } | |
| 3985 | ||
| 3986 | pu blic getBM SData(BMS. VistaInteg ration.Via .Backgroun dProcessSe rvice.quer yBean quer yBean) { | |
| 3987 | this.que ryBean = q ueryBean; | |
| 3988 | } | |
| 3989 | } | |
| 3990 | ||
| 3991 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 3992 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. ServiceMod el", "4.0. 0.0")] | |
| 3993 | [System.Se rviceModel .MessageCo ntractAttr ibute(Wrap perName="g etBMSDataR esponse", WrapperNam espace="ht tp:// DNS . URL /", IsWrap ped=true)] | |
| 3994 | intern al partial class get BMSDataRes ponse { | |
| 3995 | ||
| 3996 | [System.Se rviceModel .MessageBo dyMemberAt tribute(Na mespace="h ttp:// DNS . URL /", Order= 0)] | |
| 3997 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.textA rray TextA rray; | |
| 3998 | ||
| 3999 | pu blic getBM SDataRespo nse() { | |
| 4000 | } | |
| 4001 | ||
| 4002 | pu blic getBM SDataRespo nse(BMS.Vi staIntegra tion.Via.B ackgroundP rocessServ ice.textAr ray TextAr ray) { | |
| 4003 | this.Tex tArray = T extArray; | |
| 4004 | } | |
| 4005 | } | |
| 4006 | ||
| 4007 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 4008 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. ServiceMod el", "4.0. 0.0")] | |
| 4009 | [System.Se rviceModel .MessageCo ntractAttr ibute(Wrap perName="g etSiteId", WrapperNa mespace="h ttp:// DNS . URL /", IsWrap ped=true)] | |
| 4010 | intern al partial class get SiteId { | |
| 4011 | ||
| 4012 | [System.Se rviceModel .MessageBo dyMemberAt tribute(Na mespace="h ttp:// DNS . URL /", Order= 0)] | |
| 4013 | pu blic strin g vistaSer ver; | |
| 4014 | ||
| 4015 | pu blic getSi teId() { | |
| 4016 | } | |
| 4017 | ||
| 4018 | pu blic getSi teId(strin g vistaSer ver) { | |
| 4019 | this.vis taServer = vistaServ er; | |
| 4020 | } | |
| 4021 | } | |
| 4022 | ||
| 4023 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 4024 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. ServiceMod el", "4.0. 0.0")] | |
| 4025 | [System.Se rviceModel .MessageCo ntractAttr ibute(Wrap perName="g etSiteIdRe sponse", W rapperName space="htt p:// DNS . URL /", IsWrap ped=true)] | |
| 4026 | intern al partial class get SiteIdResp onse { | |
| 4027 | ||
| 4028 | [System.Se rviceModel .MessageBo dyMemberAt tribute(Na mespace="h ttp:// DNS . URL /", Order= 0)] | |
| 4029 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.textT O TextTO; | |
| 4030 | ||
| 4031 | pu blic getSi teIdRespon se() { | |
| 4032 | } | |
| 4033 | ||
| 4034 | pu blic getSi teIdRespon se(BMS.Vis taIntegrat ion.Via.Ba ckgroundPr ocessServi ce.textTO TextTO) { | |
| 4035 | this.Tex tTO = Text TO; | |
| 4036 | } | |
| 4037 | } | |
| 4038 | ||
| 4039 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 4040 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. ServiceMod el", "4.0. 0.0")] | |
| 4041 | [System.Se rviceModel .MessageCo ntractAttr ibute(Wrap perName="b atchLogin" , WrapperN amespace=" http:// DNS . URL /", IsWrap ped=true)] | |
| 4042 | intern al partial class bat chLogin { | |
| 4043 | ||
| 4044 | [System.Se rviceModel .MessageBo dyMemberAt tribute(Na mespace="h ttp:// DNS . URL /", Order= 0)] | |
| 4045 | pu blic strin g siteCode ; | |
| 4046 | ||
| 4047 | [System.Se rviceModel .MessageBo dyMemberAt tribute(Na mespace="h ttp:// DNS . URL /", Order= 1)] | |
| 4048 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.query Bean query Bean; | |
| 4049 | ||
| 4050 | pu blic batch Login() { | |
| 4051 | } | |
| 4052 | ||
| 4053 | pu blic batch Login(stri ng siteCod e, BMS.Vis taIntegrat ion.Via.Ba ckgroundPr ocessServi ce.queryBe an queryBe an) { | |
| 4054 | this.sit eCode = si teCode; | |
| 4055 | this.que ryBean = q ueryBean; | |
| 4056 | } | |
| 4057 | } | |
| 4058 | ||
| 4059 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 4060 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. ServiceMod el", "4.0. 0.0")] | |
| 4061 | [System.Se rviceModel .MessageCo ntractAttr ibute(Wrap perName="b atchLoginR esponse", WrapperNam espace="ht tp:// DNS . URL /", IsWrap ped=true)] | |
| 4062 | intern al partial class bat chLoginRes ponse { | |
| 4063 | ||
| 4064 | [System.Se rviceModel .MessageBo dyMemberAt tribute(Na mespace="h ttp:// DNS . URL /", Order= 0)] | |
| 4065 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.userT O UserTO; | |
| 4066 | ||
| 4067 | pu blic batch LoginRespo nse() { | |
| 4068 | } | |
| 4069 | ||
| 4070 | pu blic batch LoginRespo nse(BMS.Vi staIntegra tion.Via.B ackgroundP rocessServ ice.userTO UserTO) { | |
| 4071 | this.Use rTO = User TO; | |
| 4072 | } | |
| 4073 | } | |
| 4074 | ||
| 4075 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 4076 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. ServiceMod el", "4.0. 0.0")] | |
| 4077 | [System.Se rviceModel .MessageCo ntractAttr ibute(Wrap perName="l oginVIA", WrapperNam espace="ht tp:// DNS . URL /", IsWrap ped=true)] | |
| 4078 | intern al partial class log inVIA { | |
| 4079 | ||
| 4080 | [System.Se rviceModel .MessageBo dyMemberAt tribute(Na mespace="h ttp:// DNS . URL /", Order= 0)] | |
| 4081 | pu blic strin g siteCode ; | |
| 4082 | ||
| 4083 | [System.Se rviceModel .MessageBo dyMemberAt tribute(Na mespace="h ttp:// DNS . URL /", Order= 1)] | |
| 4084 | pu blic strin g accessCo de; | |
| 4085 | ||
| 4086 | [System.Se rviceModel .MessageBo dyMemberAt tribute(Na mespace="h ttp:// DNS . URL /", Order= 2)] | |
| 4087 | pu blic strin g verifyCo de; | |
| 4088 | ||
| 4089 | [System.Se rviceModel .MessageBo dyMemberAt tribute(Na mespace="h ttp:// DNS . URL /", Order= 3)] | |
| 4090 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.query Bean query Bean; | |
| 4091 | ||
| 4092 | pu blic login VIA() { | |
| 4093 | } | |
| 4094 | ||
| 4095 | pu blic login VIA(string siteCode, string ac cessCode, string ver ifyCode, B MS.VistaIn tegration. Via.Backgr oundProces sService.q ueryBean q ueryBean) { | |
| 4096 | this.sit eCode = si teCode; | |
| 4097 | this.acc essCode = accessCode ; | |
| 4098 | this.ver ifyCode = verifyCode ; | |
| 4099 | this.que ryBean = q ueryBean; | |
| 4100 | } | |
| 4101 | } | |
| 4102 | ||
| 4103 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 4104 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. ServiceMod el", "4.0. 0.0")] | |
| 4105 | [System.Se rviceModel .MessageCo ntractAttr ibute(Wrap perName="l oginVIARes ponse", Wr apperNames pace="http :// DNS . URL /", IsWrap ped=true)] | |
| 4106 | intern al partial class log inVIARespo nse { | |
| 4107 | ||
| 4108 | [System.Se rviceModel .MessageBo dyMemberAt tribute(Na mespace="h ttp:// DNS . URL /", Order= 0)] | |
| 4109 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.userT O UserTO; | |
| 4110 | ||
| 4111 | pu blic login VIARespons e() { | |
| 4112 | } | |
| 4113 | ||
| 4114 | pu blic login VIARespons e(BMS.Vist aIntegrati on.Via.Bac kgroundPro cessServic e.userTO U serTO) { | |
| 4115 | this.Use rTO = User TO; | |
| 4116 | } | |
| 4117 | } | |
| 4118 | ||
| 4119 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 4120 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. ServiceMod el", "4.0. 0.0")] | |
| 4121 | [System.Se rviceModel .MessageCo ntractAttr ibute(Wrap perName="s elect", Wr apperNames pace="http :// DNS . URL /", IsWrap ped=true)] | |
| 4122 | intern al partial class sel ect { | |
| 4123 | ||
| 4124 | [System.Se rviceModel .MessageBo dyMemberAt tribute(Na mespace="h ttp:// DNS . URL /", Order= 0)] | |
| 4125 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.query Bean query Bean; | |
| 4126 | ||
| 4127 | pu blic selec t() { | |
| 4128 | } | |
| 4129 | ||
| 4130 | pu blic selec t(BMS.Vist aIntegrati on.Via.Bac kgroundPro cessServic e.queryBea n queryBea n) { | |
| 4131 | this.que ryBean = q ueryBean; | |
| 4132 | } | |
| 4133 | } | |
| 4134 | ||
| 4135 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 4136 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. ServiceMod el", "4.0. 0.0")] | |
| 4137 | [System.Se rviceModel .MessageCo ntractAttr ibute(Wrap perName="s electRespo nse", Wrap perNamespa ce="http:/ / DNS . URL /", IsWrap ped=true)] | |
| 4138 | intern al partial class sel ectRespons e { | |
| 4139 | ||
| 4140 | [System.Se rviceModel .MessageBo dyMemberAt tribute(Na mespace="h ttp:// DNS . URL /", Order= 0)] | |
| 4141 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.patie ntTO Patie ntTO; | |
| 4142 | ||
| 4143 | pu blic selec tResponse( ) { | |
| 4144 | } | |
| 4145 | ||
| 4146 | pu blic selec tResponse( BMS.VistaI ntegration .Via.Backg roundProce ssService. patientTO PatientTO) { | |
| 4147 | this.Pat ientTO = P atientTO; | |
| 4148 | } | |
| 4149 | } | |
| 4150 | ||
| 4151 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 4152 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. ServiceMod el", "4.0. 0.0")] | |
| 4153 | [System.Se rviceModel .MessageCo ntractAttr ibute(Wrap perName="g etEFRLabDa ta", Wrapp erNamespac e="http:// DNS . URL /", IsWrap ped=true)] | |
| 4154 | intern al partial class get EFRLabData { | |
| 4155 | ||
| 4156 | [System.Se rviceModel .MessageBo dyMemberAt tribute(Na mespace="h ttp:// DNS . URL /", Order= 0)] | |
| 4157 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.query Bean query Bean; | |
| 4158 | ||
| 4159 | pu blic getEF RLabData() { | |
| 4160 | } | |
| 4161 | ||
| 4162 | pu blic getEF RLabData(B MS.VistaIn tegration. Via.Backgr oundProces sService.q ueryBean q ueryBean) { | |
| 4163 | this.que ryBean = q ueryBean; | |
| 4164 | } | |
| 4165 | } | |
| 4166 | ||
| 4167 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 4168 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. ServiceMod el", "4.0. 0.0")] | |
| 4169 | [System.Se rviceModel .MessageCo ntractAttr ibute(Wrap perName="g etEFRLabDa taResponse ", Wrapper Namespace= "http:// DNS . URL /", IsWrap ped=true)] | |
| 4170 | intern al partial class get EFRLabData Response { | |
| 4171 | ||
| 4172 | [System.Se rviceModel .MessageBo dyMemberAt tribute(Na mespace="h ttp:// DNS . URL /", Order= 0)] | |
| 4173 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.textA rray TextA rray; | |
| 4174 | ||
| 4175 | pu blic getEF RLabDataRe sponse() { | |
| 4176 | } | |
| 4177 | ||
| 4178 | pu blic getEF RLabDataRe sponse(BMS .VistaInte gration.Vi a.Backgrou ndProcessS ervice.tex tArray Tex tArray) { | |
| 4179 | this.Tex tArray = T extArray; | |
| 4180 | } | |
| 4181 | } | |
| 4182 | ||
| 4183 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 4184 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. ServiceMod el", "4.0. 0.0")] | |
| 4185 | [System.Se rviceModel .MessageCo ntractAttr ibute(Wrap perName="g etVersion" , WrapperN amespace=" http:// DNS . URL /", IsWrap ped=true)] | |
| 4186 | intern al partial class get Version { | |
| 4187 | ||
| 4188 | [System.Se rviceModel .MessageBo dyMemberAt tribute(Na mespace="h ttp:// DNS . URL /", Order= 0)] | |
| 4189 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.query Bean query Bean; | |
| 4190 | ||
| 4191 | pu blic getVe rsion() { | |
| 4192 | } | |
| 4193 | ||
| 4194 | pu blic getVe rsion(BMS. VistaInteg ration.Via .Backgroun dProcessSe rvice.quer yBean quer yBean) { | |
| 4195 | this.que ryBean = q ueryBean; | |
| 4196 | } | |
| 4197 | } | |
| 4198 | ||
| 4199 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 4200 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. ServiceMod el", "4.0. 0.0")] | |
| 4201 | [System.Se rviceModel .MessageCo ntractAttr ibute(Wrap perName="g etVersionR esponse", WrapperNam espace="ht tp:// DNS . URL /", IsWrap ped=true)] | |
| 4202 | intern al partial class get VersionRes ponse { | |
| 4203 | ||
| 4204 | [System.Se rviceModel .MessageBo dyMemberAt tribute(Na mespace="h ttp:// DNS . URL /", Order= 0)] | |
| 4205 | pu blic strin g @return; | |
| 4206 | ||
| 4207 | pu blic getVe rsionRespo nse() { | |
| 4208 | } | |
| 4209 | ||
| 4210 | pu blic getVe rsionRespo nse(string @return) { | |
| 4211 | this.@re turn = @re turn; | |
| 4212 | } | |
| 4213 | } | |
| 4214 | ||
| 4215 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 4216 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. ServiceMod el", "4.0. 0.0")] | |
| 4217 | [System.Se rviceModel .MessageCo ntractAttr ibute(Wrap perName="g etLaborato ryTestData ", Wrapper Namespace= "http:// DNS . URL /", IsWrap ped=true)] | |
| 4218 | intern al partial class get Laboratory TestData { | |
| 4219 | ||
| 4220 | [System.Se rviceModel .MessageBo dyMemberAt tribute(Na mespace="h ttp:// DNS . URL /", Order= 0)] | |
| 4221 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.query Bean query Bean; | |
| 4222 | ||
| 4223 | pu blic getLa boratoryTe stData() { | |
| 4224 | } | |
| 4225 | ||
| 4226 | pu blic getLa boratoryTe stData(BMS .VistaInte gration.Vi a.Backgrou ndProcessS ervice.que ryBean que ryBean) { | |
| 4227 | this.que ryBean = q ueryBean; | |
| 4228 | } | |
| 4229 | } | |
| 4230 | ||
| 4231 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 4232 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. ServiceMod el", "4.0. 0.0")] | |
| 4233 | [System.Se rviceModel .MessageCo ntractAttr ibute(Wrap perName="g etLaborato ryTestData Response", WrapperNa mespace="h ttp:// DNS . URL /", IsWrap ped=true)] | |
| 4234 | intern al partial class get Laboratory TestDataRe sponse { | |
| 4235 | ||
| 4236 | [System.Se rviceModel .MessageBo dyMemberAt tribute(Na mespace="h ttp:// DNS . URL /", Order= 0)] | |
| 4237 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.labRe portDataAr ray LabRep ortDataArr ay; | |
| 4238 | ||
| 4239 | pu blic getLa boratoryTe stDataResp onse() { | |
| 4240 | } | |
| 4241 | ||
| 4242 | pu blic getLa boratoryTe stDataResp onse(BMS.V istaIntegr ation.Via. Background ProcessSer vice.labRe portDataAr ray LabRep ortDataArr ay) { | |
| 4243 | this.Lab ReportData Array = La bReportDat aArray; | |
| 4244 | } | |
| 4245 | } | |
| 4246 | ||
| 4247 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 4248 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. ServiceMod el", "4.0. 0.0")] | |
| 4249 | [System.Se rviceModel .MessageCo ntractAttr ibute(Wrap perName="g etSite", W rapperName space="htt p:// DNS . URL /", IsWrap ped=true)] | |
| 4250 | intern al partial class get Site { | |
| 4251 | ||
| 4252 | [System.Se rviceModel .MessageBo dyMemberAt tribute(Na mespace="h ttp:// DNS . URL /", Order= 0)] | |
| 4253 | pu blic strin g vistaSer ver; | |
| 4254 | ||
| 4255 | [System.Se rviceModel .MessageBo dyMemberAt tribute(Na mespace="h ttp:// DNS . URL /", Order= 1)] | |
| 4256 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.query Bean query Bean; | |
| 4257 | ||
| 4258 | pu blic getSi te() { | |
| 4259 | } | |
| 4260 | ||
| 4261 | pu blic getSi te(string vistaServe r, BMS.Vis taIntegrat ion.Via.Ba ckgroundPr ocessServi ce.queryBe an queryBe an) { | |
| 4262 | this.vis taServer = vistaServ er; | |
| 4263 | this.que ryBean = q ueryBean; | |
| 4264 | } | |
| 4265 | } | |
| 4266 | ||
| 4267 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 4268 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. ServiceMod el", "4.0. 0.0")] | |
| 4269 | [System.Se rviceModel .MessageCo ntractAttr ibute(Wrap perName="g etSiteResp onse", Wra pperNamesp ace="http: // DNS . URL /", IsWrap ped=true)] | |
| 4270 | intern al partial class get SiteRespon se { | |
| 4271 | ||
| 4272 | [System.Se rviceModel .MessageBo dyMemberAt tribute(Na mespace="h ttp:// DNS . URL /", Order= 0)] | |
| 4273 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.textT O TextTO; | |
| 4274 | ||
| 4275 | pu blic getSi teResponse () { | |
| 4276 | } | |
| 4277 | ||
| 4278 | pu blic getSi teResponse (BMS.Vista Integratio n.Via.Back groundProc essService .textTO Te xtTO) { | |
| 4279 | this.Tex tTO = Text TO; | |
| 4280 | } | |
| 4281 | } | |
| 4282 | ||
| 4283 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. ServiceMod el", "4.0. 0.0")] | |
| 4284 | intern al interfa ce Backgro undProcess ServiceInt erfaceChan nel : BMS. VistaInteg ration.Via .Backgroun dProcessSe rvice.Back groundProc essService Interface, System.Se rviceModel .IClientCh annel { | |
| 4285 | } | |
| 4286 | ||
| 4287 | [Syste m.Diagnost ics.Debugg erStepThro ughAttribu te()] | |
| 4288 | [Syste m.CodeDom. Compiler.G eneratedCo deAttribut e("System. ServiceMod el", "4.0. 0.0")] | |
| 4289 | intern al partial class Bac kgroundPro cessServic eInterface Client : S ystem.Serv iceModel.C lientBase< BMS.VistaI ntegration .Via.Backg roundProce ssService. Background ProcessSer viceInterf ace>, BMS. VistaInteg ration.Via .Backgroun dProcessSe rvice.Back groundProc essService Interface { | |
| 4290 | ||
| 4291 | pu blic Backg roundProce ssServiceI nterfaceCl ient() { | |
| 4292 | } | |
| 4293 | ||
| 4294 | pu blic Backg roundProce ssServiceI nterfaceCl ient(strin g endpoint Configurat ionName) : | |
| 4295 | base (endpointC onfigurati onName) { | |
| 4296 | } | |
| 4297 | ||
| 4298 | pu blic Backg roundProce ssServiceI nterfaceCl ient(strin g endpoint Configurat ionName, s tring remo teAddress) : | |
| 4299 | base (endpointC onfigurati onName, re moteAddres s) { | |
| 4300 | } | |
| 4301 | ||
| 4302 | pu blic Backg roundProce ssServiceI nterfaceCl ient(strin g endpoint Configurat ionName, S ystem.Serv iceModel.E ndpointAdd ress remot eAddress) : | |
| 4303 | base (endpointC onfigurati onName, re moteAddres s) { | |
| 4304 | } | |
| 4305 | ||
| 4306 | pu blic Backg roundProce ssServiceI nterfaceCl ient(Syste m.ServiceM odel.Chann els.Bindin g binding, System.Se rviceModel .EndpointA ddress rem oteAddress ) : | |
| 4307 | base (binding, remoteAddr ess) { | |
| 4308 | } | |
| 4309 | ||
| 4310 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.getBM SDataRespo nse getBMS Data(BMS.V istaIntegr ation.Via. Background ProcessSer vice.getBM SData requ est) { | |
| 4311 | return b ase.Channe l.getBMSDa ta(request ); | |
| 4312 | } | |
| 4313 | ||
| 4314 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.getSi teIdRespon se getSite Id(BMS.Vis taIntegrat ion.Via.Ba ckgroundPr ocessServi ce.getSite Id request ) { | |
| 4315 | return b ase.Channe l.getSiteI d(request) ; | |
| 4316 | } | |
| 4317 | ||
| 4318 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.batch LoginRespo nse batchL ogin(BMS.V istaIntegr ation.Via. Background ProcessSer vice.batch Login requ est) { | |
| 4319 | return b ase.Channe l.batchLog in(request ); | |
| 4320 | } | |
| 4321 | ||
| 4322 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.login VIARespons e loginVIA (BMS.Vista Integratio n.Via.Back groundProc essService .loginVIA request) { | |
| 4323 | return b ase.Channe l.loginVIA (request); | |
| 4324 | } | |
| 4325 | ||
| 4326 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.selec tResponse select(BMS .VistaInte gration.Vi a.Backgrou ndProcessS ervice.sel ect reques t) { | |
| 4327 | return b ase.Channe l.select(r equest); | |
| 4328 | } | |
| 4329 | ||
| 4330 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.getEF RLabDataRe sponse get EFRLabData (BMS.Vista Integratio n.Via.Back groundProc essService .getEFRLab Data reque st) { | |
| 4331 | return b ase.Channe l.getEFRLa bData(requ est); | |
| 4332 | } | |
| 4333 | ||
| 4334 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.getVe rsionRespo nse getVer sion(BMS.V istaIntegr ation.Via. Background ProcessSer vice.getVe rsion requ est) { | |
| 4335 | return b ase.Channe l.getVersi on(request ); | |
| 4336 | } | |
| 4337 | ||
| 4338 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.getLa boratoryTe stDataResp onse getLa boratoryTe stData(BMS .VistaInte gration.Vi a.Backgrou ndProcessS ervice.get Laboratory TestData r equest) { | |
| 4339 | return b ase.Channe l.getLabor atoryTestD ata(reques t); | |
| 4340 | } | |
| 4341 | ||
| 4342 | pu blic BMS.V istaIntegr ation.Via. Background ProcessSer vice.getSi teResponse getSite(B MS.VistaIn tegration. Via.Backgr oundProces sService.g etSite req uest) { | |
| 4343 | return b ase.Channe l.getSite( request); | |
| 4344 | } | |
| 4345 | } | |
| 4346 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.