Reference.cs.svn-base 242 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // 이 코드는 도구를 사용하여 생성되었습니다.
  4. // 런타임 버전:4.0.30319.42000
  5. //
  6. // 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면
  7. // 이러한 변경 내용이 손실됩니다.
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. namespace CLIP.eForm.Consent.UI.HospitalSvcRef {
  11. using System.Runtime.Serialization;
  12. using System;
  13. [System.Diagnostics.DebuggerStepThroughAttribute()]
  14. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  15. [System.Runtime.Serialization.DataContractAttribute(Name="SettingListVO", Namespace="http://tempuri.org/")]
  16. [System.SerializableAttribute()]
  17. public partial class SettingListVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
  18. [System.NonSerializedAttribute()]
  19. private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  20. [System.Runtime.Serialization.OptionalFieldAttribute()]
  21. private string keyNameField;
  22. [System.Runtime.Serialization.OptionalFieldAttribute()]
  23. private string keyValueField;
  24. [global::System.ComponentModel.BrowsableAttribute(false)]
  25. public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
  26. get {
  27. return this.extensionDataField;
  28. }
  29. set {
  30. this.extensionDataField = value;
  31. }
  32. }
  33. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  34. public string keyName {
  35. get {
  36. return this.keyNameField;
  37. }
  38. set {
  39. if ((object.ReferenceEquals(this.keyNameField, value) != true)) {
  40. this.keyNameField = value;
  41. this.RaisePropertyChanged("keyName");
  42. }
  43. }
  44. }
  45. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  46. public string keyValue {
  47. get {
  48. return this.keyValueField;
  49. }
  50. set {
  51. if ((object.ReferenceEquals(this.keyValueField, value) != true)) {
  52. this.keyValueField = value;
  53. this.RaisePropertyChanged("keyValue");
  54. }
  55. }
  56. }
  57. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  58. protected void RaisePropertyChanged(string propertyName) {
  59. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  60. if ((propertyChanged != null)) {
  61. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  62. }
  63. }
  64. }
  65. [System.Diagnostics.DebuggerStepThroughAttribute()]
  66. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  67. [System.Runtime.Serialization.DataContractAttribute(Name="UserVO", Namespace="http://tempuri.org/")]
  68. [System.SerializableAttribute()]
  69. public partial class UserVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
  70. [System.NonSerializedAttribute()]
  71. private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  72. [System.Runtime.Serialization.OptionalFieldAttribute()]
  73. private string userIdField;
  74. [System.Runtime.Serialization.OptionalFieldAttribute()]
  75. private string userPasswdField;
  76. [System.Runtime.Serialization.OptionalFieldAttribute()]
  77. private string userNameField;
  78. [System.Runtime.Serialization.OptionalFieldAttribute()]
  79. private string userDeptcdField;
  80. [System.Runtime.Serialization.OptionalFieldAttribute()]
  81. private string userDepthngnmField;
  82. [System.Runtime.Serialization.OptionalFieldAttribute()]
  83. private string userSupportDeptCdField;
  84. [System.Runtime.Serialization.OptionalFieldAttribute()]
  85. private string userSupportBaseCdField;
  86. [System.Runtime.Serialization.OptionalFieldAttribute()]
  87. private string userTelNoField;
  88. [System.Runtime.Serialization.OptionalFieldAttribute()]
  89. private string jobKindCdField;
  90. [System.Runtime.Serialization.OptionalFieldAttribute()]
  91. private string jobKindNmField;
  92. [System.Runtime.Serialization.OptionalFieldAttribute()]
  93. private string ioFlagField;
  94. [System.Runtime.Serialization.OptionalFieldAttribute()]
  95. private string drKindField;
  96. [global::System.ComponentModel.BrowsableAttribute(false)]
  97. public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
  98. get {
  99. return this.extensionDataField;
  100. }
  101. set {
  102. this.extensionDataField = value;
  103. }
  104. }
  105. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  106. public string userId {
  107. get {
  108. return this.userIdField;
  109. }
  110. set {
  111. if ((object.ReferenceEquals(this.userIdField, value) != true)) {
  112. this.userIdField = value;
  113. this.RaisePropertyChanged("userId");
  114. }
  115. }
  116. }
  117. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  118. public string userPasswd {
  119. get {
  120. return this.userPasswdField;
  121. }
  122. set {
  123. if ((object.ReferenceEquals(this.userPasswdField, value) != true)) {
  124. this.userPasswdField = value;
  125. this.RaisePropertyChanged("userPasswd");
  126. }
  127. }
  128. }
  129. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  130. public string userName {
  131. get {
  132. return this.userNameField;
  133. }
  134. set {
  135. if ((object.ReferenceEquals(this.userNameField, value) != true)) {
  136. this.userNameField = value;
  137. this.RaisePropertyChanged("userName");
  138. }
  139. }
  140. }
  141. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  142. public string userDeptcd {
  143. get {
  144. return this.userDeptcdField;
  145. }
  146. set {
  147. if ((object.ReferenceEquals(this.userDeptcdField, value) != true)) {
  148. this.userDeptcdField = value;
  149. this.RaisePropertyChanged("userDeptcd");
  150. }
  151. }
  152. }
  153. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  154. public string userDepthngnm {
  155. get {
  156. return this.userDepthngnmField;
  157. }
  158. set {
  159. if ((object.ReferenceEquals(this.userDepthngnmField, value) != true)) {
  160. this.userDepthngnmField = value;
  161. this.RaisePropertyChanged("userDepthngnm");
  162. }
  163. }
  164. }
  165. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  166. public string userSupportDeptCd {
  167. get {
  168. return this.userSupportDeptCdField;
  169. }
  170. set {
  171. if ((object.ReferenceEquals(this.userSupportDeptCdField, value) != true)) {
  172. this.userSupportDeptCdField = value;
  173. this.RaisePropertyChanged("userSupportDeptCd");
  174. }
  175. }
  176. }
  177. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
  178. public string userSupportBaseCd {
  179. get {
  180. return this.userSupportBaseCdField;
  181. }
  182. set {
  183. if ((object.ReferenceEquals(this.userSupportBaseCdField, value) != true)) {
  184. this.userSupportBaseCdField = value;
  185. this.RaisePropertyChanged("userSupportBaseCd");
  186. }
  187. }
  188. }
  189. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
  190. public string userTelNo {
  191. get {
  192. return this.userTelNoField;
  193. }
  194. set {
  195. if ((object.ReferenceEquals(this.userTelNoField, value) != true)) {
  196. this.userTelNoField = value;
  197. this.RaisePropertyChanged("userTelNo");
  198. }
  199. }
  200. }
  201. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
  202. public string jobKindCd {
  203. get {
  204. return this.jobKindCdField;
  205. }
  206. set {
  207. if ((object.ReferenceEquals(this.jobKindCdField, value) != true)) {
  208. this.jobKindCdField = value;
  209. this.RaisePropertyChanged("jobKindCd");
  210. }
  211. }
  212. }
  213. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
  214. public string jobKindNm {
  215. get {
  216. return this.jobKindNmField;
  217. }
  218. set {
  219. if ((object.ReferenceEquals(this.jobKindNmField, value) != true)) {
  220. this.jobKindNmField = value;
  221. this.RaisePropertyChanged("jobKindNm");
  222. }
  223. }
  224. }
  225. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
  226. public string ioFlag {
  227. get {
  228. return this.ioFlagField;
  229. }
  230. set {
  231. if ((object.ReferenceEquals(this.ioFlagField, value) != true)) {
  232. this.ioFlagField = value;
  233. this.RaisePropertyChanged("ioFlag");
  234. }
  235. }
  236. }
  237. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
  238. public string drKind {
  239. get {
  240. return this.drKindField;
  241. }
  242. set {
  243. if ((object.ReferenceEquals(this.drKindField, value) != true)) {
  244. this.drKindField = value;
  245. this.RaisePropertyChanged("drKind");
  246. }
  247. }
  248. }
  249. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  250. protected void RaisePropertyChanged(string propertyName) {
  251. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  252. if ((propertyChanged != null)) {
  253. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  254. }
  255. }
  256. }
  257. [System.Diagnostics.DebuggerStepThroughAttribute()]
  258. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  259. [System.Runtime.Serialization.DataContractAttribute(Name="ClnDateForDropdownVO", Namespace="http://tempuri.org/")]
  260. [System.SerializableAttribute()]
  261. public partial class ClnDateForDropdownVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
  262. [System.NonSerializedAttribute()]
  263. private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  264. [System.Runtime.Serialization.OptionalFieldAttribute()]
  265. private string ClnDateField;
  266. [System.Runtime.Serialization.OptionalFieldAttribute()]
  267. private string ClnFormatDateField;
  268. [System.Runtime.Serialization.OptionalFieldAttribute()]
  269. private string VisitTypeField;
  270. [System.Runtime.Serialization.OptionalFieldAttribute()]
  271. private string VisitTypeNameField;
  272. [System.Runtime.Serialization.OptionalFieldAttribute()]
  273. private string ClnDeptCodeField;
  274. [System.Runtime.Serialization.OptionalFieldAttribute()]
  275. private string ClnDeptNameField;
  276. [System.Runtime.Serialization.OptionalFieldAttribute()]
  277. private string DeptCdField;
  278. private int CretNoField;
  279. [System.Runtime.Serialization.OptionalFieldAttribute()]
  280. private string orddridField;
  281. [global::System.ComponentModel.BrowsableAttribute(false)]
  282. public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
  283. get {
  284. return this.extensionDataField;
  285. }
  286. set {
  287. this.extensionDataField = value;
  288. }
  289. }
  290. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  291. public string ClnDate {
  292. get {
  293. return this.ClnDateField;
  294. }
  295. set {
  296. if ((object.ReferenceEquals(this.ClnDateField, value) != true)) {
  297. this.ClnDateField = value;
  298. this.RaisePropertyChanged("ClnDate");
  299. }
  300. }
  301. }
  302. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  303. public string ClnFormatDate {
  304. get {
  305. return this.ClnFormatDateField;
  306. }
  307. set {
  308. if ((object.ReferenceEquals(this.ClnFormatDateField, value) != true)) {
  309. this.ClnFormatDateField = value;
  310. this.RaisePropertyChanged("ClnFormatDate");
  311. }
  312. }
  313. }
  314. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  315. public string VisitType {
  316. get {
  317. return this.VisitTypeField;
  318. }
  319. set {
  320. if ((object.ReferenceEquals(this.VisitTypeField, value) != true)) {
  321. this.VisitTypeField = value;
  322. this.RaisePropertyChanged("VisitType");
  323. }
  324. }
  325. }
  326. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  327. public string VisitTypeName {
  328. get {
  329. return this.VisitTypeNameField;
  330. }
  331. set {
  332. if ((object.ReferenceEquals(this.VisitTypeNameField, value) != true)) {
  333. this.VisitTypeNameField = value;
  334. this.RaisePropertyChanged("VisitTypeName");
  335. }
  336. }
  337. }
  338. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  339. public string ClnDeptCode {
  340. get {
  341. return this.ClnDeptCodeField;
  342. }
  343. set {
  344. if ((object.ReferenceEquals(this.ClnDeptCodeField, value) != true)) {
  345. this.ClnDeptCodeField = value;
  346. this.RaisePropertyChanged("ClnDeptCode");
  347. }
  348. }
  349. }
  350. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  351. public string ClnDeptName {
  352. get {
  353. return this.ClnDeptNameField;
  354. }
  355. set {
  356. if ((object.ReferenceEquals(this.ClnDeptNameField, value) != true)) {
  357. this.ClnDeptNameField = value;
  358. this.RaisePropertyChanged("ClnDeptName");
  359. }
  360. }
  361. }
  362. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
  363. public string DeptCd {
  364. get {
  365. return this.DeptCdField;
  366. }
  367. set {
  368. if ((object.ReferenceEquals(this.DeptCdField, value) != true)) {
  369. this.DeptCdField = value;
  370. this.RaisePropertyChanged("DeptCd");
  371. }
  372. }
  373. }
  374. [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=7)]
  375. public int CretNo {
  376. get {
  377. return this.CretNoField;
  378. }
  379. set {
  380. if ((this.CretNoField.Equals(value) != true)) {
  381. this.CretNoField = value;
  382. this.RaisePropertyChanged("CretNo");
  383. }
  384. }
  385. }
  386. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
  387. public string orddrid {
  388. get {
  389. return this.orddridField;
  390. }
  391. set {
  392. if ((object.ReferenceEquals(this.orddridField, value) != true)) {
  393. this.orddridField = value;
  394. this.RaisePropertyChanged("orddrid");
  395. }
  396. }
  397. }
  398. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  399. protected void RaisePropertyChanged(string propertyName) {
  400. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  401. if ((propertyChanged != null)) {
  402. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  403. }
  404. }
  405. }
  406. [System.Diagnostics.DebuggerStepThroughAttribute()]
  407. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  408. [System.Runtime.Serialization.DataContractAttribute(Name="PatListVO", Namespace="http://tempuri.org/")]
  409. [System.SerializableAttribute()]
  410. public partial class PatListVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
  411. [System.NonSerializedAttribute()]
  412. private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  413. [System.Runtime.Serialization.OptionalFieldAttribute()]
  414. private string pidField;
  415. [System.Runtime.Serialization.OptionalFieldAttribute()]
  416. private string inDdField;
  417. private int cretNoField;
  418. [System.Runtime.Serialization.OptionalFieldAttribute()]
  419. private string hngNmField;
  420. [System.Runtime.Serialization.OptionalFieldAttribute()]
  421. private string ordDeptCdField;
  422. [System.Runtime.Serialization.OptionalFieldAttribute()]
  423. private string saField;
  424. [System.Runtime.Serialization.OptionalFieldAttribute()]
  425. private string deptNmField;
  426. [System.Runtime.Serialization.OptionalFieldAttribute()]
  427. private string doctorNmField;
  428. [System.Runtime.Serialization.OptionalFieldAttribute()]
  429. private string roomCdField;
  430. [System.Runtime.Serialization.OptionalFieldAttribute()]
  431. private string ordTypeField;
  432. [System.Runtime.Serialization.OptionalFieldAttribute()]
  433. private string erOrdDeptNmField;
  434. [System.Runtime.Serialization.OptionalFieldAttribute()]
  435. private string erMedispclNmField;
  436. [System.Runtime.Serialization.OptionalFieldAttribute()]
  437. private string erOrdDeptCdField;
  438. [System.Runtime.Serialization.OptionalFieldAttribute()]
  439. private string ordTmField;
  440. [System.Runtime.Serialization.OptionalFieldAttribute()]
  441. private string opRoomNmField;
  442. [System.Runtime.Serialization.OptionalFieldAttribute()]
  443. private string opDateField;
  444. [System.Runtime.Serialization.OptionalFieldAttribute()]
  445. private string opRsrvNoField;
  446. [global::System.ComponentModel.BrowsableAttribute(false)]
  447. public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
  448. get {
  449. return this.extensionDataField;
  450. }
  451. set {
  452. this.extensionDataField = value;
  453. }
  454. }
  455. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  456. public string pid {
  457. get {
  458. return this.pidField;
  459. }
  460. set {
  461. if ((object.ReferenceEquals(this.pidField, value) != true)) {
  462. this.pidField = value;
  463. this.RaisePropertyChanged("pid");
  464. }
  465. }
  466. }
  467. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  468. public string inDd {
  469. get {
  470. return this.inDdField;
  471. }
  472. set {
  473. if ((object.ReferenceEquals(this.inDdField, value) != true)) {
  474. this.inDdField = value;
  475. this.RaisePropertyChanged("inDd");
  476. }
  477. }
  478. }
  479. [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=2)]
  480. public int cretNo {
  481. get {
  482. return this.cretNoField;
  483. }
  484. set {
  485. if ((this.cretNoField.Equals(value) != true)) {
  486. this.cretNoField = value;
  487. this.RaisePropertyChanged("cretNo");
  488. }
  489. }
  490. }
  491. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  492. public string hngNm {
  493. get {
  494. return this.hngNmField;
  495. }
  496. set {
  497. if ((object.ReferenceEquals(this.hngNmField, value) != true)) {
  498. this.hngNmField = value;
  499. this.RaisePropertyChanged("hngNm");
  500. }
  501. }
  502. }
  503. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  504. public string ordDeptCd {
  505. get {
  506. return this.ordDeptCdField;
  507. }
  508. set {
  509. if ((object.ReferenceEquals(this.ordDeptCdField, value) != true)) {
  510. this.ordDeptCdField = value;
  511. this.RaisePropertyChanged("ordDeptCd");
  512. }
  513. }
  514. }
  515. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  516. public string sa {
  517. get {
  518. return this.saField;
  519. }
  520. set {
  521. if ((object.ReferenceEquals(this.saField, value) != true)) {
  522. this.saField = value;
  523. this.RaisePropertyChanged("sa");
  524. }
  525. }
  526. }
  527. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
  528. public string deptNm {
  529. get {
  530. return this.deptNmField;
  531. }
  532. set {
  533. if ((object.ReferenceEquals(this.deptNmField, value) != true)) {
  534. this.deptNmField = value;
  535. this.RaisePropertyChanged("deptNm");
  536. }
  537. }
  538. }
  539. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
  540. public string doctorNm {
  541. get {
  542. return this.doctorNmField;
  543. }
  544. set {
  545. if ((object.ReferenceEquals(this.doctorNmField, value) != true)) {
  546. this.doctorNmField = value;
  547. this.RaisePropertyChanged("doctorNm");
  548. }
  549. }
  550. }
  551. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
  552. public string roomCd {
  553. get {
  554. return this.roomCdField;
  555. }
  556. set {
  557. if ((object.ReferenceEquals(this.roomCdField, value) != true)) {
  558. this.roomCdField = value;
  559. this.RaisePropertyChanged("roomCd");
  560. }
  561. }
  562. }
  563. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
  564. public string ordType {
  565. get {
  566. return this.ordTypeField;
  567. }
  568. set {
  569. if ((object.ReferenceEquals(this.ordTypeField, value) != true)) {
  570. this.ordTypeField = value;
  571. this.RaisePropertyChanged("ordType");
  572. }
  573. }
  574. }
  575. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
  576. public string erOrdDeptNm {
  577. get {
  578. return this.erOrdDeptNmField;
  579. }
  580. set {
  581. if ((object.ReferenceEquals(this.erOrdDeptNmField, value) != true)) {
  582. this.erOrdDeptNmField = value;
  583. this.RaisePropertyChanged("erOrdDeptNm");
  584. }
  585. }
  586. }
  587. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
  588. public string erMedispclNm {
  589. get {
  590. return this.erMedispclNmField;
  591. }
  592. set {
  593. if ((object.ReferenceEquals(this.erMedispclNmField, value) != true)) {
  594. this.erMedispclNmField = value;
  595. this.RaisePropertyChanged("erMedispclNm");
  596. }
  597. }
  598. }
  599. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
  600. public string erOrdDeptCd {
  601. get {
  602. return this.erOrdDeptCdField;
  603. }
  604. set {
  605. if ((object.ReferenceEquals(this.erOrdDeptCdField, value) != true)) {
  606. this.erOrdDeptCdField = value;
  607. this.RaisePropertyChanged("erOrdDeptCd");
  608. }
  609. }
  610. }
  611. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
  612. public string ordTm {
  613. get {
  614. return this.ordTmField;
  615. }
  616. set {
  617. if ((object.ReferenceEquals(this.ordTmField, value) != true)) {
  618. this.ordTmField = value;
  619. this.RaisePropertyChanged("ordTm");
  620. }
  621. }
  622. }
  623. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
  624. public string opRoomNm {
  625. get {
  626. return this.opRoomNmField;
  627. }
  628. set {
  629. if ((object.ReferenceEquals(this.opRoomNmField, value) != true)) {
  630. this.opRoomNmField = value;
  631. this.RaisePropertyChanged("opRoomNm");
  632. }
  633. }
  634. }
  635. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
  636. public string opDate {
  637. get {
  638. return this.opDateField;
  639. }
  640. set {
  641. if ((object.ReferenceEquals(this.opDateField, value) != true)) {
  642. this.opDateField = value;
  643. this.RaisePropertyChanged("opDate");
  644. }
  645. }
  646. }
  647. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=16)]
  648. public string opRsrvNo {
  649. get {
  650. return this.opRsrvNoField;
  651. }
  652. set {
  653. if ((object.ReferenceEquals(this.opRsrvNoField, value) != true)) {
  654. this.opRsrvNoField = value;
  655. this.RaisePropertyChanged("opRsrvNo");
  656. }
  657. }
  658. }
  659. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  660. protected void RaisePropertyChanged(string propertyName) {
  661. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  662. if ((propertyChanged != null)) {
  663. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  664. }
  665. }
  666. }
  667. [System.Diagnostics.DebuggerStepThroughAttribute()]
  668. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  669. [System.Runtime.Serialization.DataContractAttribute(Name="DeptListVO", Namespace="http://tempuri.org/")]
  670. [System.SerializableAttribute()]
  671. public partial class DeptListVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
  672. [System.NonSerializedAttribute()]
  673. private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  674. [System.Runtime.Serialization.OptionalFieldAttribute()]
  675. private string deptCdField;
  676. [System.Runtime.Serialization.OptionalFieldAttribute()]
  677. private string deptNmField;
  678. [System.Runtime.Serialization.OptionalFieldAttribute()]
  679. private string deptAbbrField;
  680. private int sortField;
  681. [global::System.ComponentModel.BrowsableAttribute(false)]
  682. public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
  683. get {
  684. return this.extensionDataField;
  685. }
  686. set {
  687. this.extensionDataField = value;
  688. }
  689. }
  690. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  691. public string deptCd {
  692. get {
  693. return this.deptCdField;
  694. }
  695. set {
  696. if ((object.ReferenceEquals(this.deptCdField, value) != true)) {
  697. this.deptCdField = value;
  698. this.RaisePropertyChanged("deptCd");
  699. }
  700. }
  701. }
  702. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  703. public string deptNm {
  704. get {
  705. return this.deptNmField;
  706. }
  707. set {
  708. if ((object.ReferenceEquals(this.deptNmField, value) != true)) {
  709. this.deptNmField = value;
  710. this.RaisePropertyChanged("deptNm");
  711. }
  712. }
  713. }
  714. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  715. public string deptAbbr {
  716. get {
  717. return this.deptAbbrField;
  718. }
  719. set {
  720. if ((object.ReferenceEquals(this.deptAbbrField, value) != true)) {
  721. this.deptAbbrField = value;
  722. this.RaisePropertyChanged("deptAbbr");
  723. }
  724. }
  725. }
  726. [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=3)]
  727. public int sort {
  728. get {
  729. return this.sortField;
  730. }
  731. set {
  732. if ((this.sortField.Equals(value) != true)) {
  733. this.sortField = value;
  734. this.RaisePropertyChanged("sort");
  735. }
  736. }
  737. }
  738. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  739. protected void RaisePropertyChanged(string propertyName) {
  740. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  741. if ((propertyChanged != null)) {
  742. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  743. }
  744. }
  745. }
  746. [System.Diagnostics.DebuggerStepThroughAttribute()]
  747. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  748. [System.Runtime.Serialization.DataContractAttribute(Name="DocListVO", Namespace="http://tempuri.org/")]
  749. [System.SerializableAttribute()]
  750. public partial class DocListVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
  751. [System.NonSerializedAttribute()]
  752. private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  753. [System.Runtime.Serialization.OptionalFieldAttribute()]
  754. private string doctorIdField;
  755. [System.Runtime.Serialization.OptionalFieldAttribute()]
  756. private string doctorNmField;
  757. [System.Runtime.Serialization.OptionalFieldAttribute()]
  758. private string drKindField;
  759. [global::System.ComponentModel.BrowsableAttribute(false)]
  760. public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
  761. get {
  762. return this.extensionDataField;
  763. }
  764. set {
  765. this.extensionDataField = value;
  766. }
  767. }
  768. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  769. public string doctorId {
  770. get {
  771. return this.doctorIdField;
  772. }
  773. set {
  774. if ((object.ReferenceEquals(this.doctorIdField, value) != true)) {
  775. this.doctorIdField = value;
  776. this.RaisePropertyChanged("doctorId");
  777. }
  778. }
  779. }
  780. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  781. public string doctorNm {
  782. get {
  783. return this.doctorNmField;
  784. }
  785. set {
  786. if ((object.ReferenceEquals(this.doctorNmField, value) != true)) {
  787. this.doctorNmField = value;
  788. this.RaisePropertyChanged("doctorNm");
  789. }
  790. }
  791. }
  792. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  793. public string drKind {
  794. get {
  795. return this.drKindField;
  796. }
  797. set {
  798. if ((object.ReferenceEquals(this.drKindField, value) != true)) {
  799. this.drKindField = value;
  800. this.RaisePropertyChanged("drKind");
  801. }
  802. }
  803. }
  804. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  805. protected void RaisePropertyChanged(string propertyName) {
  806. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  807. if ((propertyChanged != null)) {
  808. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  809. }
  810. }
  811. }
  812. [System.Diagnostics.DebuggerStepThroughAttribute()]
  813. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  814. [System.Runtime.Serialization.DataContractAttribute(Name="InspectionVO", Namespace="http://tempuri.org/")]
  815. [System.SerializableAttribute()]
  816. public partial class InspectionVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
  817. [System.NonSerializedAttribute()]
  818. private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  819. [System.Runtime.Serialization.OptionalFieldAttribute()]
  820. private string baseCdField;
  821. [System.Runtime.Serialization.OptionalFieldAttribute()]
  822. private string supportDeptCdField;
  823. [System.Runtime.Serialization.OptionalFieldAttribute()]
  824. private string supportDeptNmField;
  825. [global::System.ComponentModel.BrowsableAttribute(false)]
  826. public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
  827. get {
  828. return this.extensionDataField;
  829. }
  830. set {
  831. this.extensionDataField = value;
  832. }
  833. }
  834. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  835. public string baseCd {
  836. get {
  837. return this.baseCdField;
  838. }
  839. set {
  840. if ((object.ReferenceEquals(this.baseCdField, value) != true)) {
  841. this.baseCdField = value;
  842. this.RaisePropertyChanged("baseCd");
  843. }
  844. }
  845. }
  846. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  847. public string supportDeptCd {
  848. get {
  849. return this.supportDeptCdField;
  850. }
  851. set {
  852. if ((object.ReferenceEquals(this.supportDeptCdField, value) != true)) {
  853. this.supportDeptCdField = value;
  854. this.RaisePropertyChanged("supportDeptCd");
  855. }
  856. }
  857. }
  858. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  859. public string supportDeptNm {
  860. get {
  861. return this.supportDeptNmField;
  862. }
  863. set {
  864. if ((object.ReferenceEquals(this.supportDeptNmField, value) != true)) {
  865. this.supportDeptNmField = value;
  866. this.RaisePropertyChanged("supportDeptNm");
  867. }
  868. }
  869. }
  870. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  871. protected void RaisePropertyChanged(string propertyName) {
  872. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  873. if ((propertyChanged != null)) {
  874. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  875. }
  876. }
  877. }
  878. [System.Diagnostics.DebuggerStepThroughAttribute()]
  879. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  880. [System.Runtime.Serialization.DataContractAttribute(Name="PatInfoListVO", Namespace="http://tempuri.org/")]
  881. [System.SerializableAttribute()]
  882. public partial class PatInfoListVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
  883. [System.NonSerializedAttribute()]
  884. private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  885. [System.Runtime.Serialization.OptionalFieldAttribute()]
  886. private string pidField;
  887. [System.Runtime.Serialization.OptionalFieldAttribute()]
  888. private string hngnmField;
  889. [System.Runtime.Serialization.OptionalFieldAttribute()]
  890. private string rrgstno1Field;
  891. [System.Runtime.Serialization.OptionalFieldAttribute()]
  892. private string rrgstno2Field;
  893. [System.Runtime.Serialization.OptionalFieldAttribute()]
  894. private string ageField;
  895. [System.Runtime.Serialization.OptionalFieldAttribute()]
  896. private string mpphontelField;
  897. [System.Runtime.Serialization.OptionalFieldAttribute()]
  898. private string addrField;
  899. [System.Runtime.Serialization.OptionalFieldAttribute()]
  900. private string lastordddField;
  901. [System.Runtime.Serialization.OptionalFieldAttribute()]
  902. private string lastorddeptField;
  903. [System.Runtime.Serialization.OptionalFieldAttribute()]
  904. private string lastinsukindField;
  905. [global::System.ComponentModel.BrowsableAttribute(false)]
  906. public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
  907. get {
  908. return this.extensionDataField;
  909. }
  910. set {
  911. this.extensionDataField = value;
  912. }
  913. }
  914. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  915. public string pid {
  916. get {
  917. return this.pidField;
  918. }
  919. set {
  920. if ((object.ReferenceEquals(this.pidField, value) != true)) {
  921. this.pidField = value;
  922. this.RaisePropertyChanged("pid");
  923. }
  924. }
  925. }
  926. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  927. public string hngnm {
  928. get {
  929. return this.hngnmField;
  930. }
  931. set {
  932. if ((object.ReferenceEquals(this.hngnmField, value) != true)) {
  933. this.hngnmField = value;
  934. this.RaisePropertyChanged("hngnm");
  935. }
  936. }
  937. }
  938. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  939. public string rrgstno1 {
  940. get {
  941. return this.rrgstno1Field;
  942. }
  943. set {
  944. if ((object.ReferenceEquals(this.rrgstno1Field, value) != true)) {
  945. this.rrgstno1Field = value;
  946. this.RaisePropertyChanged("rrgstno1");
  947. }
  948. }
  949. }
  950. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  951. public string rrgstno2 {
  952. get {
  953. return this.rrgstno2Field;
  954. }
  955. set {
  956. if ((object.ReferenceEquals(this.rrgstno2Field, value) != true)) {
  957. this.rrgstno2Field = value;
  958. this.RaisePropertyChanged("rrgstno2");
  959. }
  960. }
  961. }
  962. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  963. public string age {
  964. get {
  965. return this.ageField;
  966. }
  967. set {
  968. if ((object.ReferenceEquals(this.ageField, value) != true)) {
  969. this.ageField = value;
  970. this.RaisePropertyChanged("age");
  971. }
  972. }
  973. }
  974. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  975. public string mpphontel {
  976. get {
  977. return this.mpphontelField;
  978. }
  979. set {
  980. if ((object.ReferenceEquals(this.mpphontelField, value) != true)) {
  981. this.mpphontelField = value;
  982. this.RaisePropertyChanged("mpphontel");
  983. }
  984. }
  985. }
  986. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
  987. public string addr {
  988. get {
  989. return this.addrField;
  990. }
  991. set {
  992. if ((object.ReferenceEquals(this.addrField, value) != true)) {
  993. this.addrField = value;
  994. this.RaisePropertyChanged("addr");
  995. }
  996. }
  997. }
  998. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
  999. public string lastorddd {
  1000. get {
  1001. return this.lastordddField;
  1002. }
  1003. set {
  1004. if ((object.ReferenceEquals(this.lastordddField, value) != true)) {
  1005. this.lastordddField = value;
  1006. this.RaisePropertyChanged("lastorddd");
  1007. }
  1008. }
  1009. }
  1010. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
  1011. public string lastorddept {
  1012. get {
  1013. return this.lastorddeptField;
  1014. }
  1015. set {
  1016. if ((object.ReferenceEquals(this.lastorddeptField, value) != true)) {
  1017. this.lastorddeptField = value;
  1018. this.RaisePropertyChanged("lastorddept");
  1019. }
  1020. }
  1021. }
  1022. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
  1023. public string lastinsukind {
  1024. get {
  1025. return this.lastinsukindField;
  1026. }
  1027. set {
  1028. if ((object.ReferenceEquals(this.lastinsukindField, value) != true)) {
  1029. this.lastinsukindField = value;
  1030. this.RaisePropertyChanged("lastinsukind");
  1031. }
  1032. }
  1033. }
  1034. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  1035. protected void RaisePropertyChanged(string propertyName) {
  1036. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  1037. if ((propertyChanged != null)) {
  1038. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  1039. }
  1040. }
  1041. }
  1042. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1043. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  1044. [System.Runtime.Serialization.DataContractAttribute(Name="PatientVO", Namespace="http://tempuri.org/")]
  1045. [System.SerializableAttribute()]
  1046. public partial class PatientVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
  1047. [System.NonSerializedAttribute()]
  1048. private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  1049. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1050. private string ordDeptCdField;
  1051. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1052. private string pidField;
  1053. private int cretNoField;
  1054. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1055. private string saField;
  1056. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1057. private string patientNameField;
  1058. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1059. private string juminNoField;
  1060. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1061. private string patientAddrField;
  1062. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1063. private string patientMobileNoField;
  1064. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1065. private string patientTelNoField;
  1066. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1067. private string wardField;
  1068. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1069. private string roomCdField;
  1070. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1071. private string inDdField;
  1072. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1073. private string dSchDdField;
  1074. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1075. private string ordTypeField;
  1076. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1077. private string deptEngNmField;
  1078. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1079. private string deptNmField;
  1080. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1081. private string opDeptCdField;
  1082. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1083. private string opDeptNmField;
  1084. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1085. private string opDoctorNmField;
  1086. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1087. private string opDoctorIdField;
  1088. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1089. private string diagHngNmField;
  1090. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1091. private string mainDrIdField;
  1092. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1093. private string mainDrNmField;
  1094. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1095. private string patientAlertField;
  1096. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1097. private string opCnFmDdField;
  1098. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1099. private string opNmField;
  1100. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1101. private string opremFactField;
  1102. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1103. private string anstDrNmField;
  1104. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1105. private string anstDeptNmField;
  1106. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1107. private string opRsrvNoField;
  1108. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1109. private string patientBirthDdField;
  1110. [global::System.ComponentModel.BrowsableAttribute(false)]
  1111. public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
  1112. get {
  1113. return this.extensionDataField;
  1114. }
  1115. set {
  1116. this.extensionDataField = value;
  1117. }
  1118. }
  1119. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  1120. public string ordDeptCd {
  1121. get {
  1122. return this.ordDeptCdField;
  1123. }
  1124. set {
  1125. if ((object.ReferenceEquals(this.ordDeptCdField, value) != true)) {
  1126. this.ordDeptCdField = value;
  1127. this.RaisePropertyChanged("ordDeptCd");
  1128. }
  1129. }
  1130. }
  1131. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  1132. public string pid {
  1133. get {
  1134. return this.pidField;
  1135. }
  1136. set {
  1137. if ((object.ReferenceEquals(this.pidField, value) != true)) {
  1138. this.pidField = value;
  1139. this.RaisePropertyChanged("pid");
  1140. }
  1141. }
  1142. }
  1143. [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=2)]
  1144. public int cretNo {
  1145. get {
  1146. return this.cretNoField;
  1147. }
  1148. set {
  1149. if ((this.cretNoField.Equals(value) != true)) {
  1150. this.cretNoField = value;
  1151. this.RaisePropertyChanged("cretNo");
  1152. }
  1153. }
  1154. }
  1155. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  1156. public string sa {
  1157. get {
  1158. return this.saField;
  1159. }
  1160. set {
  1161. if ((object.ReferenceEquals(this.saField, value) != true)) {
  1162. this.saField = value;
  1163. this.RaisePropertyChanged("sa");
  1164. }
  1165. }
  1166. }
  1167. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  1168. public string patientName {
  1169. get {
  1170. return this.patientNameField;
  1171. }
  1172. set {
  1173. if ((object.ReferenceEquals(this.patientNameField, value) != true)) {
  1174. this.patientNameField = value;
  1175. this.RaisePropertyChanged("patientName");
  1176. }
  1177. }
  1178. }
  1179. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  1180. public string juminNo {
  1181. get {
  1182. return this.juminNoField;
  1183. }
  1184. set {
  1185. if ((object.ReferenceEquals(this.juminNoField, value) != true)) {
  1186. this.juminNoField = value;
  1187. this.RaisePropertyChanged("juminNo");
  1188. }
  1189. }
  1190. }
  1191. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
  1192. public string patientAddr {
  1193. get {
  1194. return this.patientAddrField;
  1195. }
  1196. set {
  1197. if ((object.ReferenceEquals(this.patientAddrField, value) != true)) {
  1198. this.patientAddrField = value;
  1199. this.RaisePropertyChanged("patientAddr");
  1200. }
  1201. }
  1202. }
  1203. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
  1204. public string patientMobileNo {
  1205. get {
  1206. return this.patientMobileNoField;
  1207. }
  1208. set {
  1209. if ((object.ReferenceEquals(this.patientMobileNoField, value) != true)) {
  1210. this.patientMobileNoField = value;
  1211. this.RaisePropertyChanged("patientMobileNo");
  1212. }
  1213. }
  1214. }
  1215. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
  1216. public string patientTelNo {
  1217. get {
  1218. return this.patientTelNoField;
  1219. }
  1220. set {
  1221. if ((object.ReferenceEquals(this.patientTelNoField, value) != true)) {
  1222. this.patientTelNoField = value;
  1223. this.RaisePropertyChanged("patientTelNo");
  1224. }
  1225. }
  1226. }
  1227. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
  1228. public string ward {
  1229. get {
  1230. return this.wardField;
  1231. }
  1232. set {
  1233. if ((object.ReferenceEquals(this.wardField, value) != true)) {
  1234. this.wardField = value;
  1235. this.RaisePropertyChanged("ward");
  1236. }
  1237. }
  1238. }
  1239. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
  1240. public string roomCd {
  1241. get {
  1242. return this.roomCdField;
  1243. }
  1244. set {
  1245. if ((object.ReferenceEquals(this.roomCdField, value) != true)) {
  1246. this.roomCdField = value;
  1247. this.RaisePropertyChanged("roomCd");
  1248. }
  1249. }
  1250. }
  1251. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
  1252. public string inDd {
  1253. get {
  1254. return this.inDdField;
  1255. }
  1256. set {
  1257. if ((object.ReferenceEquals(this.inDdField, value) != true)) {
  1258. this.inDdField = value;
  1259. this.RaisePropertyChanged("inDd");
  1260. }
  1261. }
  1262. }
  1263. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
  1264. public string dSchDd {
  1265. get {
  1266. return this.dSchDdField;
  1267. }
  1268. set {
  1269. if ((object.ReferenceEquals(this.dSchDdField, value) != true)) {
  1270. this.dSchDdField = value;
  1271. this.RaisePropertyChanged("dSchDd");
  1272. }
  1273. }
  1274. }
  1275. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
  1276. public string ordType {
  1277. get {
  1278. return this.ordTypeField;
  1279. }
  1280. set {
  1281. if ((object.ReferenceEquals(this.ordTypeField, value) != true)) {
  1282. this.ordTypeField = value;
  1283. this.RaisePropertyChanged("ordType");
  1284. }
  1285. }
  1286. }
  1287. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
  1288. public string deptEngNm {
  1289. get {
  1290. return this.deptEngNmField;
  1291. }
  1292. set {
  1293. if ((object.ReferenceEquals(this.deptEngNmField, value) != true)) {
  1294. this.deptEngNmField = value;
  1295. this.RaisePropertyChanged("deptEngNm");
  1296. }
  1297. }
  1298. }
  1299. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
  1300. public string deptNm {
  1301. get {
  1302. return this.deptNmField;
  1303. }
  1304. set {
  1305. if ((object.ReferenceEquals(this.deptNmField, value) != true)) {
  1306. this.deptNmField = value;
  1307. this.RaisePropertyChanged("deptNm");
  1308. }
  1309. }
  1310. }
  1311. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=16)]
  1312. public string opDeptCd {
  1313. get {
  1314. return this.opDeptCdField;
  1315. }
  1316. set {
  1317. if ((object.ReferenceEquals(this.opDeptCdField, value) != true)) {
  1318. this.opDeptCdField = value;
  1319. this.RaisePropertyChanged("opDeptCd");
  1320. }
  1321. }
  1322. }
  1323. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=17)]
  1324. public string opDeptNm {
  1325. get {
  1326. return this.opDeptNmField;
  1327. }
  1328. set {
  1329. if ((object.ReferenceEquals(this.opDeptNmField, value) != true)) {
  1330. this.opDeptNmField = value;
  1331. this.RaisePropertyChanged("opDeptNm");
  1332. }
  1333. }
  1334. }
  1335. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=18)]
  1336. public string opDoctorNm {
  1337. get {
  1338. return this.opDoctorNmField;
  1339. }
  1340. set {
  1341. if ((object.ReferenceEquals(this.opDoctorNmField, value) != true)) {
  1342. this.opDoctorNmField = value;
  1343. this.RaisePropertyChanged("opDoctorNm");
  1344. }
  1345. }
  1346. }
  1347. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=19)]
  1348. public string opDoctorId {
  1349. get {
  1350. return this.opDoctorIdField;
  1351. }
  1352. set {
  1353. if ((object.ReferenceEquals(this.opDoctorIdField, value) != true)) {
  1354. this.opDoctorIdField = value;
  1355. this.RaisePropertyChanged("opDoctorId");
  1356. }
  1357. }
  1358. }
  1359. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=20)]
  1360. public string diagHngNm {
  1361. get {
  1362. return this.diagHngNmField;
  1363. }
  1364. set {
  1365. if ((object.ReferenceEquals(this.diagHngNmField, value) != true)) {
  1366. this.diagHngNmField = value;
  1367. this.RaisePropertyChanged("diagHngNm");
  1368. }
  1369. }
  1370. }
  1371. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=21)]
  1372. public string mainDrId {
  1373. get {
  1374. return this.mainDrIdField;
  1375. }
  1376. set {
  1377. if ((object.ReferenceEquals(this.mainDrIdField, value) != true)) {
  1378. this.mainDrIdField = value;
  1379. this.RaisePropertyChanged("mainDrId");
  1380. }
  1381. }
  1382. }
  1383. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=22)]
  1384. public string mainDrNm {
  1385. get {
  1386. return this.mainDrNmField;
  1387. }
  1388. set {
  1389. if ((object.ReferenceEquals(this.mainDrNmField, value) != true)) {
  1390. this.mainDrNmField = value;
  1391. this.RaisePropertyChanged("mainDrNm");
  1392. }
  1393. }
  1394. }
  1395. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=23)]
  1396. public string patientAlert {
  1397. get {
  1398. return this.patientAlertField;
  1399. }
  1400. set {
  1401. if ((object.ReferenceEquals(this.patientAlertField, value) != true)) {
  1402. this.patientAlertField = value;
  1403. this.RaisePropertyChanged("patientAlert");
  1404. }
  1405. }
  1406. }
  1407. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=24)]
  1408. public string opCnFmDd {
  1409. get {
  1410. return this.opCnFmDdField;
  1411. }
  1412. set {
  1413. if ((object.ReferenceEquals(this.opCnFmDdField, value) != true)) {
  1414. this.opCnFmDdField = value;
  1415. this.RaisePropertyChanged("opCnFmDd");
  1416. }
  1417. }
  1418. }
  1419. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=25)]
  1420. public string opNm {
  1421. get {
  1422. return this.opNmField;
  1423. }
  1424. set {
  1425. if ((object.ReferenceEquals(this.opNmField, value) != true)) {
  1426. this.opNmField = value;
  1427. this.RaisePropertyChanged("opNm");
  1428. }
  1429. }
  1430. }
  1431. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=26)]
  1432. public string opremFact {
  1433. get {
  1434. return this.opremFactField;
  1435. }
  1436. set {
  1437. if ((object.ReferenceEquals(this.opremFactField, value) != true)) {
  1438. this.opremFactField = value;
  1439. this.RaisePropertyChanged("opremFact");
  1440. }
  1441. }
  1442. }
  1443. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=27)]
  1444. public string anstDrNm {
  1445. get {
  1446. return this.anstDrNmField;
  1447. }
  1448. set {
  1449. if ((object.ReferenceEquals(this.anstDrNmField, value) != true)) {
  1450. this.anstDrNmField = value;
  1451. this.RaisePropertyChanged("anstDrNm");
  1452. }
  1453. }
  1454. }
  1455. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=28)]
  1456. public string anstDeptNm {
  1457. get {
  1458. return this.anstDeptNmField;
  1459. }
  1460. set {
  1461. if ((object.ReferenceEquals(this.anstDeptNmField, value) != true)) {
  1462. this.anstDeptNmField = value;
  1463. this.RaisePropertyChanged("anstDeptNm");
  1464. }
  1465. }
  1466. }
  1467. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=29)]
  1468. public string opRsrvNo {
  1469. get {
  1470. return this.opRsrvNoField;
  1471. }
  1472. set {
  1473. if ((object.ReferenceEquals(this.opRsrvNoField, value) != true)) {
  1474. this.opRsrvNoField = value;
  1475. this.RaisePropertyChanged("opRsrvNo");
  1476. }
  1477. }
  1478. }
  1479. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=30)]
  1480. public string patientBirthDd {
  1481. get {
  1482. return this.patientBirthDdField;
  1483. }
  1484. set {
  1485. if ((object.ReferenceEquals(this.patientBirthDdField, value) != true)) {
  1486. this.patientBirthDdField = value;
  1487. this.RaisePropertyChanged("patientBirthDd");
  1488. }
  1489. }
  1490. }
  1491. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  1492. protected void RaisePropertyChanged(string propertyName) {
  1493. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  1494. if ((propertyChanged != null)) {
  1495. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  1496. }
  1497. }
  1498. }
  1499. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1500. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  1501. [System.Runtime.Serialization.DataContractAttribute(Name="SingleReturnData", Namespace="http://tempuri.org/")]
  1502. [System.SerializableAttribute()]
  1503. public partial class SingleReturnData : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
  1504. [System.NonSerializedAttribute()]
  1505. private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  1506. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1507. private string responseDataField;
  1508. [global::System.ComponentModel.BrowsableAttribute(false)]
  1509. public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
  1510. get {
  1511. return this.extensionDataField;
  1512. }
  1513. set {
  1514. this.extensionDataField = value;
  1515. }
  1516. }
  1517. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  1518. public string responseData {
  1519. get {
  1520. return this.responseDataField;
  1521. }
  1522. set {
  1523. if ((object.ReferenceEquals(this.responseDataField, value) != true)) {
  1524. this.responseDataField = value;
  1525. this.RaisePropertyChanged("responseData");
  1526. }
  1527. }
  1528. }
  1529. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  1530. protected void RaisePropertyChanged(string propertyName) {
  1531. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  1532. if ((propertyChanged != null)) {
  1533. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  1534. }
  1535. }
  1536. }
  1537. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1538. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  1539. [System.Runtime.Serialization.DataContractAttribute(Name="UserSignImageVO", Namespace="http://tempuri.org/")]
  1540. [System.SerializableAttribute()]
  1541. public partial class UserSignImageVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
  1542. [System.NonSerializedAttribute()]
  1543. private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  1544. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1545. private byte[] SignImageField;
  1546. [global::System.ComponentModel.BrowsableAttribute(false)]
  1547. public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
  1548. get {
  1549. return this.extensionDataField;
  1550. }
  1551. set {
  1552. this.extensionDataField = value;
  1553. }
  1554. }
  1555. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  1556. public byte[] SignImage {
  1557. get {
  1558. return this.SignImageField;
  1559. }
  1560. set {
  1561. if ((object.ReferenceEquals(this.SignImageField, value) != true)) {
  1562. this.SignImageField = value;
  1563. this.RaisePropertyChanged("SignImage");
  1564. }
  1565. }
  1566. }
  1567. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  1568. protected void RaisePropertyChanged(string propertyName) {
  1569. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  1570. if ((propertyChanged != null)) {
  1571. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  1572. }
  1573. }
  1574. }
  1575. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1576. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  1577. [System.Runtime.Serialization.CollectionDataContractAttribute(Name="ArrayOfString", Namespace="http://tempuri.org/", ItemName="string")]
  1578. [System.SerializableAttribute()]
  1579. public class ArrayOfString : System.Collections.Generic.List<string> {
  1580. }
  1581. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1582. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  1583. [System.Runtime.Serialization.DataContractAttribute(Name="UserLoginDeptList", Namespace="http://tempuri.org/")]
  1584. [System.SerializableAttribute()]
  1585. public partial class UserLoginDeptList : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
  1586. [System.NonSerializedAttribute()]
  1587. private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  1588. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1589. private string dutPlceCdField;
  1590. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1591. private string deptHngNmField;
  1592. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1593. private string jobKindCdField;
  1594. private int sortNoField;
  1595. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1596. private string indexPageField;
  1597. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1598. private string userIdField;
  1599. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1600. private string userNameField;
  1601. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1602. private string supportDeptCdField;
  1603. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1604. private string baseCdField;
  1605. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1606. private string drKindField;
  1607. [global::System.ComponentModel.BrowsableAttribute(false)]
  1608. public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
  1609. get {
  1610. return this.extensionDataField;
  1611. }
  1612. set {
  1613. this.extensionDataField = value;
  1614. }
  1615. }
  1616. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  1617. public string dutPlceCd {
  1618. get {
  1619. return this.dutPlceCdField;
  1620. }
  1621. set {
  1622. if ((object.ReferenceEquals(this.dutPlceCdField, value) != true)) {
  1623. this.dutPlceCdField = value;
  1624. this.RaisePropertyChanged("dutPlceCd");
  1625. }
  1626. }
  1627. }
  1628. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  1629. public string deptHngNm {
  1630. get {
  1631. return this.deptHngNmField;
  1632. }
  1633. set {
  1634. if ((object.ReferenceEquals(this.deptHngNmField, value) != true)) {
  1635. this.deptHngNmField = value;
  1636. this.RaisePropertyChanged("deptHngNm");
  1637. }
  1638. }
  1639. }
  1640. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  1641. public string jobKindCd {
  1642. get {
  1643. return this.jobKindCdField;
  1644. }
  1645. set {
  1646. if ((object.ReferenceEquals(this.jobKindCdField, value) != true)) {
  1647. this.jobKindCdField = value;
  1648. this.RaisePropertyChanged("jobKindCd");
  1649. }
  1650. }
  1651. }
  1652. [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=3)]
  1653. public int sortNo {
  1654. get {
  1655. return this.sortNoField;
  1656. }
  1657. set {
  1658. if ((this.sortNoField.Equals(value) != true)) {
  1659. this.sortNoField = value;
  1660. this.RaisePropertyChanged("sortNo");
  1661. }
  1662. }
  1663. }
  1664. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  1665. public string indexPage {
  1666. get {
  1667. return this.indexPageField;
  1668. }
  1669. set {
  1670. if ((object.ReferenceEquals(this.indexPageField, value) != true)) {
  1671. this.indexPageField = value;
  1672. this.RaisePropertyChanged("indexPage");
  1673. }
  1674. }
  1675. }
  1676. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  1677. public string userId {
  1678. get {
  1679. return this.userIdField;
  1680. }
  1681. set {
  1682. if ((object.ReferenceEquals(this.userIdField, value) != true)) {
  1683. this.userIdField = value;
  1684. this.RaisePropertyChanged("userId");
  1685. }
  1686. }
  1687. }
  1688. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
  1689. public string userName {
  1690. get {
  1691. return this.userNameField;
  1692. }
  1693. set {
  1694. if ((object.ReferenceEquals(this.userNameField, value) != true)) {
  1695. this.userNameField = value;
  1696. this.RaisePropertyChanged("userName");
  1697. }
  1698. }
  1699. }
  1700. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
  1701. public string supportDeptCd {
  1702. get {
  1703. return this.supportDeptCdField;
  1704. }
  1705. set {
  1706. if ((object.ReferenceEquals(this.supportDeptCdField, value) != true)) {
  1707. this.supportDeptCdField = value;
  1708. this.RaisePropertyChanged("supportDeptCd");
  1709. }
  1710. }
  1711. }
  1712. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
  1713. public string baseCd {
  1714. get {
  1715. return this.baseCdField;
  1716. }
  1717. set {
  1718. if ((object.ReferenceEquals(this.baseCdField, value) != true)) {
  1719. this.baseCdField = value;
  1720. this.RaisePropertyChanged("baseCd");
  1721. }
  1722. }
  1723. }
  1724. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
  1725. public string drKind {
  1726. get {
  1727. return this.drKindField;
  1728. }
  1729. set {
  1730. if ((object.ReferenceEquals(this.drKindField, value) != true)) {
  1731. this.drKindField = value;
  1732. this.RaisePropertyChanged("drKind");
  1733. }
  1734. }
  1735. }
  1736. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  1737. protected void RaisePropertyChanged(string propertyName) {
  1738. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  1739. if ((propertyChanged != null)) {
  1740. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  1741. }
  1742. }
  1743. }
  1744. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1745. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  1746. [System.Runtime.Serialization.DataContractAttribute(Name="MobileUserInfo", Namespace="http://tempuri.org/")]
  1747. [System.SerializableAttribute()]
  1748. public partial class MobileUserInfo : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
  1749. [System.NonSerializedAttribute()]
  1750. private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  1751. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1752. private string useridField;
  1753. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1754. private string usernmField;
  1755. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1756. private string dutplcecdField;
  1757. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1758. private string deptengnmField;
  1759. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1760. private string dutplceinstcdField;
  1761. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1762. private string dutplceinstnmField;
  1763. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1764. private string jobkindcdField;
  1765. [System.Runtime.Serialization.OptionalFieldAttribute()]
  1766. private string jobkindnmField;
  1767. [global::System.ComponentModel.BrowsableAttribute(false)]
  1768. public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
  1769. get {
  1770. return this.extensionDataField;
  1771. }
  1772. set {
  1773. this.extensionDataField = value;
  1774. }
  1775. }
  1776. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  1777. public string userid {
  1778. get {
  1779. return this.useridField;
  1780. }
  1781. set {
  1782. if ((object.ReferenceEquals(this.useridField, value) != true)) {
  1783. this.useridField = value;
  1784. this.RaisePropertyChanged("userid");
  1785. }
  1786. }
  1787. }
  1788. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  1789. public string usernm {
  1790. get {
  1791. return this.usernmField;
  1792. }
  1793. set {
  1794. if ((object.ReferenceEquals(this.usernmField, value) != true)) {
  1795. this.usernmField = value;
  1796. this.RaisePropertyChanged("usernm");
  1797. }
  1798. }
  1799. }
  1800. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  1801. public string dutplcecd {
  1802. get {
  1803. return this.dutplcecdField;
  1804. }
  1805. set {
  1806. if ((object.ReferenceEquals(this.dutplcecdField, value) != true)) {
  1807. this.dutplcecdField = value;
  1808. this.RaisePropertyChanged("dutplcecd");
  1809. }
  1810. }
  1811. }
  1812. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  1813. public string deptengnm {
  1814. get {
  1815. return this.deptengnmField;
  1816. }
  1817. set {
  1818. if ((object.ReferenceEquals(this.deptengnmField, value) != true)) {
  1819. this.deptengnmField = value;
  1820. this.RaisePropertyChanged("deptengnm");
  1821. }
  1822. }
  1823. }
  1824. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  1825. public string dutplceinstcd {
  1826. get {
  1827. return this.dutplceinstcdField;
  1828. }
  1829. set {
  1830. if ((object.ReferenceEquals(this.dutplceinstcdField, value) != true)) {
  1831. this.dutplceinstcdField = value;
  1832. this.RaisePropertyChanged("dutplceinstcd");
  1833. }
  1834. }
  1835. }
  1836. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  1837. public string dutplceinstnm {
  1838. get {
  1839. return this.dutplceinstnmField;
  1840. }
  1841. set {
  1842. if ((object.ReferenceEquals(this.dutplceinstnmField, value) != true)) {
  1843. this.dutplceinstnmField = value;
  1844. this.RaisePropertyChanged("dutplceinstnm");
  1845. }
  1846. }
  1847. }
  1848. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
  1849. public string jobkindcd {
  1850. get {
  1851. return this.jobkindcdField;
  1852. }
  1853. set {
  1854. if ((object.ReferenceEquals(this.jobkindcdField, value) != true)) {
  1855. this.jobkindcdField = value;
  1856. this.RaisePropertyChanged("jobkindcd");
  1857. }
  1858. }
  1859. }
  1860. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
  1861. public string jobkindnm {
  1862. get {
  1863. return this.jobkindnmField;
  1864. }
  1865. set {
  1866. if ((object.ReferenceEquals(this.jobkindnmField, value) != true)) {
  1867. this.jobkindnmField = value;
  1868. this.RaisePropertyChanged("jobkindnm");
  1869. }
  1870. }
  1871. }
  1872. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  1873. protected void RaisePropertyChanged(string propertyName) {
  1874. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  1875. if ((propertyChanged != null)) {
  1876. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  1877. }
  1878. }
  1879. }
  1880. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1881. [System.ServiceModel.ServiceContractAttribute(ConfigurationName="HospitalSvcRef.HospitalSvcSoap")]
  1882. public interface HospitalSvcSoap {
  1883. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/CheckWebService", ReplyAction="*")]
  1884. bool CheckWebService();
  1885. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/CheckDatabaseConnection", ReplyAction="*")]
  1886. bool CheckDatabaseConnection();
  1887. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 GetSettingDataResult이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1888. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetSettingData", ReplyAction="*")]
  1889. CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataResponse GetSettingData(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataRequest request);
  1890. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1891. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetUserInfo", ReplyAction="*")]
  1892. CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoResponse GetUserInfo(CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoRequest request);
  1893. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 patientNo이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1894. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetTrmtDateList", ReplyAction="*")]
  1895. CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListResponse GetTrmtDateList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListRequest request);
  1896. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 selectFlag이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1897. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetPatientList", ReplyAction="*")]
  1898. CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListResponse GetPatientList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListRequest request);
  1899. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 selectFlag이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1900. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetPatientExList", ReplyAction="*")]
  1901. CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListResponse GetPatientExList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListRequest request);
  1902. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 selectFlag이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1903. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetPatientExListPC", ReplyAction="*")]
  1904. CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCResponse GetPatientExListPC(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCRequest request);
  1905. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 selectFlag이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1906. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetPatientExPCList", ReplyAction="*")]
  1907. CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListResponse GetPatientExPCList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListRequest request);
  1908. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 ordType이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1909. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetDeptList", ReplyAction="*")]
  1910. CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListResponse GetDeptList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListRequest request);
  1911. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 ordType이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1912. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetOrgDeptList", ReplyAction="*")]
  1913. CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListResponse GetOrgDeptList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListRequest request);
  1914. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 dutInstCd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1915. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetWardList", ReplyAction="*")]
  1916. CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListResponse GetWardList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListRequest request);
  1917. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 srchDd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1918. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetDoctorList", ReplyAction="*")]
  1919. CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListResponse GetDoctorList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListRequest request);
  1920. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 GetSupportDeptListResult이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1921. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetSupportDeptList", ReplyAction="*")]
  1922. CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListResponse GetSupportDeptList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListRequest request);
  1923. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 deptCd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1924. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetInspectingRoomName", ReplyAction="*")]
  1925. CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameResponse GetInspectingRoomName(CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameRequest request);
  1926. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 srchcond이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1927. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetSrchPatInfo", ReplyAction="*")]
  1928. CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoResponse GetSrchPatInfo(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoRequest request);
  1929. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 pid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1930. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetPatientInfo", ReplyAction="*")]
  1931. CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoResponse GetPatientInfo(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoRequest request);
  1932. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1933. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SetUserFormSetList", ReplyAction="*")]
  1934. CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListResponse SetUserFormSetList(CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListRequest request);
  1935. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 idx이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1936. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/DelUserFormSetList", ReplyAction="*")]
  1937. CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListResponse DelUserFormSetList(CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListRequest request);
  1938. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 GetOcrTagResult이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1939. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetOcrTag", ReplyAction="*")]
  1940. CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagResponse GetOcrTag(CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagRequest request);
  1941. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1942. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetSignImage", ReplyAction="*")]
  1943. CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageResponse GetSignImage(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageRequest request);
  1944. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 pid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1945. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetDiagNameList", ReplyAction="*")]
  1946. CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListResponse GetDiagNameList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListRequest request);
  1947. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 pid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1948. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetFileName", ReplyAction="*")]
  1949. CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameResponse GetFileName(CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameRequest request);
  1950. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 pid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1951. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/delEformData", ReplyAction="*")]
  1952. CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataResponse delEformData(CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataRequest request);
  1953. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1954. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/UpdateUserSetup", ReplyAction="*")]
  1955. CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupResponse UpdateUserSetup(CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupRequest request);
  1956. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1957. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/doLogin", ReplyAction="*")]
  1958. CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginResponse doLogin(CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginRequest request);
  1959. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1960. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/userLoginOutLog", ReplyAction="*")]
  1961. CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogResponse userLoginOutLog(CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogRequest request);
  1962. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1963. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetMobileUserInfo", ReplyAction="*")]
  1964. CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoResponse GetMobileUserInfo(CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoRequest request);
  1965. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1966. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getUserPrefMonitor", ReplyAction="*")]
  1967. CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorResponse getUserPrefMonitor(CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorRequest request);
  1968. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1969. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SetSupportUserData", ReplyAction="*")]
  1970. CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataResponse SetSupportUserData(CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataRequest request);
  1971. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1972. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SetUserPrefMonitor", ReplyAction="*")]
  1973. CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorResponse SetUserPrefMonitor(CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorRequest request);
  1974. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 instcd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  1975. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getSessionTime", ReplyAction="*")]
  1976. CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeResponse getSessionTime(CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeRequest request);
  1977. }
  1978. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1979. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1980. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1981. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1982. public partial class GetSettingDataRequest {
  1983. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetSettingData", Namespace="http://tempuri.org/", Order=0)]
  1984. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataRequestBody Body;
  1985. public GetSettingDataRequest() {
  1986. }
  1987. public GetSettingDataRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataRequestBody Body) {
  1988. this.Body = Body;
  1989. }
  1990. }
  1991. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1992. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1993. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1994. [System.Runtime.Serialization.DataContractAttribute()]
  1995. public partial class GetSettingDataRequestBody {
  1996. public GetSettingDataRequestBody() {
  1997. }
  1998. }
  1999. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2000. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2001. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2002. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2003. public partial class GetSettingDataResponse {
  2004. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetSettingDataResponse", Namespace="http://tempuri.org/", Order=0)]
  2005. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataResponseBody Body;
  2006. public GetSettingDataResponse() {
  2007. }
  2008. public GetSettingDataResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataResponseBody Body) {
  2009. this.Body = Body;
  2010. }
  2011. }
  2012. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2013. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2014. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2015. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2016. public partial class GetSettingDataResponseBody {
  2017. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2018. public CLIP.eForm.Consent.UI.HospitalSvcRef.SettingListVO[] GetSettingDataResult;
  2019. public GetSettingDataResponseBody() {
  2020. }
  2021. public GetSettingDataResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.SettingListVO[] GetSettingDataResult) {
  2022. this.GetSettingDataResult = GetSettingDataResult;
  2023. }
  2024. }
  2025. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2026. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2027. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2028. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2029. public partial class GetUserInfoRequest {
  2030. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetUserInfo", Namespace="http://tempuri.org/", Order=0)]
  2031. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoRequestBody Body;
  2032. public GetUserInfoRequest() {
  2033. }
  2034. public GetUserInfoRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoRequestBody Body) {
  2035. this.Body = Body;
  2036. }
  2037. }
  2038. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2039. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2040. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2041. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2042. public partial class GetUserInfoRequestBody {
  2043. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2044. public string userid;
  2045. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2046. public string dutinstcd;
  2047. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  2048. public string dutplcecd;
  2049. public GetUserInfoRequestBody() {
  2050. }
  2051. public GetUserInfoRequestBody(string userid, string dutinstcd, string dutplcecd) {
  2052. this.userid = userid;
  2053. this.dutinstcd = dutinstcd;
  2054. this.dutplcecd = dutplcecd;
  2055. }
  2056. }
  2057. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2058. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2059. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2060. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2061. public partial class GetUserInfoResponse {
  2062. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetUserInfoResponse", Namespace="http://tempuri.org/", Order=0)]
  2063. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoResponseBody Body;
  2064. public GetUserInfoResponse() {
  2065. }
  2066. public GetUserInfoResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoResponseBody Body) {
  2067. this.Body = Body;
  2068. }
  2069. }
  2070. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2071. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2072. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2073. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2074. public partial class GetUserInfoResponseBody {
  2075. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2076. public CLIP.eForm.Consent.UI.HospitalSvcRef.UserVO GetUserInfoResult;
  2077. public GetUserInfoResponseBody() {
  2078. }
  2079. public GetUserInfoResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.UserVO GetUserInfoResult) {
  2080. this.GetUserInfoResult = GetUserInfoResult;
  2081. }
  2082. }
  2083. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2084. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2085. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2086. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2087. public partial class GetTrmtDateListRequest {
  2088. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetTrmtDateList", Namespace="http://tempuri.org/", Order=0)]
  2089. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListRequestBody Body;
  2090. public GetTrmtDateListRequest() {
  2091. }
  2092. public GetTrmtDateListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListRequestBody Body) {
  2093. this.Body = Body;
  2094. }
  2095. }
  2096. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2097. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2098. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2099. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2100. public partial class GetTrmtDateListRequestBody {
  2101. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2102. public string patientNo;
  2103. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2104. public string searchClnDate;
  2105. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  2106. public string searchType;
  2107. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  2108. public string orddeptcd;
  2109. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  2110. public string dutinstcd;
  2111. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  2112. public string ordType;
  2113. public GetTrmtDateListRequestBody() {
  2114. }
  2115. public GetTrmtDateListRequestBody(string patientNo, string searchClnDate, string searchType, string orddeptcd, string dutinstcd, string ordType) {
  2116. this.patientNo = patientNo;
  2117. this.searchClnDate = searchClnDate;
  2118. this.searchType = searchType;
  2119. this.orddeptcd = orddeptcd;
  2120. this.dutinstcd = dutinstcd;
  2121. this.ordType = ordType;
  2122. }
  2123. }
  2124. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2125. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2126. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2127. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2128. public partial class GetTrmtDateListResponse {
  2129. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetTrmtDateListResponse", Namespace="http://tempuri.org/", Order=0)]
  2130. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListResponseBody Body;
  2131. public GetTrmtDateListResponse() {
  2132. }
  2133. public GetTrmtDateListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListResponseBody Body) {
  2134. this.Body = Body;
  2135. }
  2136. }
  2137. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2138. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2139. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2140. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2141. public partial class GetTrmtDateListResponseBody {
  2142. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2143. public CLIP.eForm.Consent.UI.HospitalSvcRef.ClnDateForDropdownVO[] GetTrmtDateListResult;
  2144. public GetTrmtDateListResponseBody() {
  2145. }
  2146. public GetTrmtDateListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.ClnDateForDropdownVO[] GetTrmtDateListResult) {
  2147. this.GetTrmtDateListResult = GetTrmtDateListResult;
  2148. }
  2149. }
  2150. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2151. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2152. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2153. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2154. public partial class GetPatientListRequest {
  2155. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPatientList", Namespace="http://tempuri.org/", Order=0)]
  2156. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListRequestBody Body;
  2157. public GetPatientListRequest() {
  2158. }
  2159. public GetPatientListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListRequestBody Body) {
  2160. this.Body = Body;
  2161. }
  2162. }
  2163. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2164. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2165. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2166. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2167. public partial class GetPatientListRequestBody {
  2168. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2169. public string selectFlag;
  2170. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2171. public string srchYN;
  2172. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  2173. public string srchDd;
  2174. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  2175. public string ordDeptCd;
  2176. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  2177. public string doctorId;
  2178. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  2179. public string pid;
  2180. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
  2181. public string wardCd;
  2182. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
  2183. public string patientState;
  2184. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
  2185. public string dutInstCd;
  2186. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
  2187. public string userId;
  2188. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
  2189. public string myPatient;
  2190. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
  2191. public string drKind;
  2192. public GetPatientListRequestBody() {
  2193. }
  2194. public GetPatientListRequestBody(string selectFlag, string srchYN, string srchDd, string ordDeptCd, string doctorId, string pid, string wardCd, string patientState, string dutInstCd, string userId, string myPatient, string drKind) {
  2195. this.selectFlag = selectFlag;
  2196. this.srchYN = srchYN;
  2197. this.srchDd = srchDd;
  2198. this.ordDeptCd = ordDeptCd;
  2199. this.doctorId = doctorId;
  2200. this.pid = pid;
  2201. this.wardCd = wardCd;
  2202. this.patientState = patientState;
  2203. this.dutInstCd = dutInstCd;
  2204. this.userId = userId;
  2205. this.myPatient = myPatient;
  2206. this.drKind = drKind;
  2207. }
  2208. }
  2209. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2210. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2211. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2212. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2213. public partial class GetPatientListResponse {
  2214. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPatientListResponse", Namespace="http://tempuri.org/", Order=0)]
  2215. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListResponseBody Body;
  2216. public GetPatientListResponse() {
  2217. }
  2218. public GetPatientListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListResponseBody Body) {
  2219. this.Body = Body;
  2220. }
  2221. }
  2222. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2223. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2224. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2225. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2226. public partial class GetPatientListResponseBody {
  2227. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2228. public CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientListResult;
  2229. public GetPatientListResponseBody() {
  2230. }
  2231. public GetPatientListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientListResult) {
  2232. this.GetPatientListResult = GetPatientListResult;
  2233. }
  2234. }
  2235. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2236. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2237. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2238. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2239. public partial class GetPatientExListRequest {
  2240. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPatientExList", Namespace="http://tempuri.org/", Order=0)]
  2241. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListRequestBody Body;
  2242. public GetPatientExListRequest() {
  2243. }
  2244. public GetPatientExListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListRequestBody Body) {
  2245. this.Body = Body;
  2246. }
  2247. }
  2248. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2249. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2250. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2251. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2252. public partial class GetPatientExListRequestBody {
  2253. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2254. public string selectFlag;
  2255. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2256. public string toDt;
  2257. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  2258. public string fromDt;
  2259. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  2260. public string baseCd;
  2261. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  2262. public string supportDeptCd;
  2263. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  2264. public string pid;
  2265. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
  2266. public string patientState;
  2267. public GetPatientExListRequestBody() {
  2268. }
  2269. public GetPatientExListRequestBody(string selectFlag, string toDt, string fromDt, string baseCd, string supportDeptCd, string pid, string patientState) {
  2270. this.selectFlag = selectFlag;
  2271. this.toDt = toDt;
  2272. this.fromDt = fromDt;
  2273. this.baseCd = baseCd;
  2274. this.supportDeptCd = supportDeptCd;
  2275. this.pid = pid;
  2276. this.patientState = patientState;
  2277. }
  2278. }
  2279. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2280. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2281. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2282. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2283. public partial class GetPatientExListResponse {
  2284. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPatientExListResponse", Namespace="http://tempuri.org/", Order=0)]
  2285. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListResponseBody Body;
  2286. public GetPatientExListResponse() {
  2287. }
  2288. public GetPatientExListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListResponseBody Body) {
  2289. this.Body = Body;
  2290. }
  2291. }
  2292. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2293. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2294. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2295. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2296. public partial class GetPatientExListResponseBody {
  2297. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2298. public CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientExListResult;
  2299. public GetPatientExListResponseBody() {
  2300. }
  2301. public GetPatientExListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientExListResult) {
  2302. this.GetPatientExListResult = GetPatientExListResult;
  2303. }
  2304. }
  2305. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2306. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2307. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2308. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2309. public partial class GetPatientExListPCRequest {
  2310. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPatientExListPC", Namespace="http://tempuri.org/", Order=0)]
  2311. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCRequestBody Body;
  2312. public GetPatientExListPCRequest() {
  2313. }
  2314. public GetPatientExListPCRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCRequestBody Body) {
  2315. this.Body = Body;
  2316. }
  2317. }
  2318. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2319. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2320. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2321. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2322. public partial class GetPatientExListPCRequestBody {
  2323. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2324. public string selectFlag;
  2325. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2326. public string toDt;
  2327. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  2328. public string fromDt;
  2329. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  2330. public string baseCd;
  2331. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  2332. public string supportDeptCd;
  2333. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  2334. public string pid;
  2335. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
  2336. public string patientState;
  2337. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
  2338. public string isMainD;
  2339. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
  2340. public string mainDrId;
  2341. public GetPatientExListPCRequestBody() {
  2342. }
  2343. public GetPatientExListPCRequestBody(string selectFlag, string toDt, string fromDt, string baseCd, string supportDeptCd, string pid, string patientState, string isMainD, string mainDrId) {
  2344. this.selectFlag = selectFlag;
  2345. this.toDt = toDt;
  2346. this.fromDt = fromDt;
  2347. this.baseCd = baseCd;
  2348. this.supportDeptCd = supportDeptCd;
  2349. this.pid = pid;
  2350. this.patientState = patientState;
  2351. this.isMainD = isMainD;
  2352. this.mainDrId = mainDrId;
  2353. }
  2354. }
  2355. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2356. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2357. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2358. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2359. public partial class GetPatientExListPCResponse {
  2360. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPatientExListPCResponse", Namespace="http://tempuri.org/", Order=0)]
  2361. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCResponseBody Body;
  2362. public GetPatientExListPCResponse() {
  2363. }
  2364. public GetPatientExListPCResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCResponseBody Body) {
  2365. this.Body = Body;
  2366. }
  2367. }
  2368. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2369. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2370. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2371. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2372. public partial class GetPatientExListPCResponseBody {
  2373. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2374. public CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientExListPCResult;
  2375. public GetPatientExListPCResponseBody() {
  2376. }
  2377. public GetPatientExListPCResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientExListPCResult) {
  2378. this.GetPatientExListPCResult = GetPatientExListPCResult;
  2379. }
  2380. }
  2381. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2382. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2383. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2384. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2385. public partial class GetPatientExPCListRequest {
  2386. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPatientExPCList", Namespace="http://tempuri.org/", Order=0)]
  2387. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListRequestBody Body;
  2388. public GetPatientExPCListRequest() {
  2389. }
  2390. public GetPatientExPCListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListRequestBody Body) {
  2391. this.Body = Body;
  2392. }
  2393. }
  2394. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2395. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2396. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2397. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2398. public partial class GetPatientExPCListRequestBody {
  2399. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2400. public string selectFlag;
  2401. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2402. public string toDt;
  2403. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  2404. public string fromDt;
  2405. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  2406. public string baseCd;
  2407. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  2408. public string supportDeptCd;
  2409. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  2410. public string pid;
  2411. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
  2412. public string patientState;
  2413. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
  2414. public string isMainD;
  2415. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
  2416. public string mainDrId;
  2417. public GetPatientExPCListRequestBody() {
  2418. }
  2419. public GetPatientExPCListRequestBody(string selectFlag, string toDt, string fromDt, string baseCd, string supportDeptCd, string pid, string patientState, string isMainD, string mainDrId) {
  2420. this.selectFlag = selectFlag;
  2421. this.toDt = toDt;
  2422. this.fromDt = fromDt;
  2423. this.baseCd = baseCd;
  2424. this.supportDeptCd = supportDeptCd;
  2425. this.pid = pid;
  2426. this.patientState = patientState;
  2427. this.isMainD = isMainD;
  2428. this.mainDrId = mainDrId;
  2429. }
  2430. }
  2431. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2432. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2433. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2434. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2435. public partial class GetPatientExPCListResponse {
  2436. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPatientExPCListResponse", Namespace="http://tempuri.org/", Order=0)]
  2437. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListResponseBody Body;
  2438. public GetPatientExPCListResponse() {
  2439. }
  2440. public GetPatientExPCListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListResponseBody Body) {
  2441. this.Body = Body;
  2442. }
  2443. }
  2444. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2445. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2446. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2447. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2448. public partial class GetPatientExPCListResponseBody {
  2449. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2450. public CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientExPCListResult;
  2451. public GetPatientExPCListResponseBody() {
  2452. }
  2453. public GetPatientExPCListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientExPCListResult) {
  2454. this.GetPatientExPCListResult = GetPatientExPCListResult;
  2455. }
  2456. }
  2457. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2458. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2459. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2460. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2461. public partial class GetDeptListRequest {
  2462. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetDeptList", Namespace="http://tempuri.org/", Order=0)]
  2463. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListRequestBody Body;
  2464. public GetDeptListRequest() {
  2465. }
  2466. public GetDeptListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListRequestBody Body) {
  2467. this.Body = Body;
  2468. }
  2469. }
  2470. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2471. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2472. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2473. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2474. public partial class GetDeptListRequestBody {
  2475. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2476. public string ordType;
  2477. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2478. public string dutInstCd;
  2479. public GetDeptListRequestBody() {
  2480. }
  2481. public GetDeptListRequestBody(string ordType, string dutInstCd) {
  2482. this.ordType = ordType;
  2483. this.dutInstCd = dutInstCd;
  2484. }
  2485. }
  2486. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2487. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2488. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2489. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2490. public partial class GetDeptListResponse {
  2491. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetDeptListResponse", Namespace="http://tempuri.org/", Order=0)]
  2492. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListResponseBody Body;
  2493. public GetDeptListResponse() {
  2494. }
  2495. public GetDeptListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListResponseBody Body) {
  2496. this.Body = Body;
  2497. }
  2498. }
  2499. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2500. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2501. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2502. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2503. public partial class GetDeptListResponseBody {
  2504. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2505. public CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetDeptListResult;
  2506. public GetDeptListResponseBody() {
  2507. }
  2508. public GetDeptListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetDeptListResult) {
  2509. this.GetDeptListResult = GetDeptListResult;
  2510. }
  2511. }
  2512. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2513. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2514. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2515. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2516. public partial class GetOrgDeptListRequest {
  2517. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetOrgDeptList", Namespace="http://tempuri.org/", Order=0)]
  2518. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListRequestBody Body;
  2519. public GetOrgDeptListRequest() {
  2520. }
  2521. public GetOrgDeptListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListRequestBody Body) {
  2522. this.Body = Body;
  2523. }
  2524. }
  2525. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2526. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2527. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2528. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2529. public partial class GetOrgDeptListRequestBody {
  2530. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2531. public string ordType;
  2532. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2533. public string dutInstCd;
  2534. public GetOrgDeptListRequestBody() {
  2535. }
  2536. public GetOrgDeptListRequestBody(string ordType, string dutInstCd) {
  2537. this.ordType = ordType;
  2538. this.dutInstCd = dutInstCd;
  2539. }
  2540. }
  2541. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2542. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2543. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2544. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2545. public partial class GetOrgDeptListResponse {
  2546. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetOrgDeptListResponse", Namespace="http://tempuri.org/", Order=0)]
  2547. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListResponseBody Body;
  2548. public GetOrgDeptListResponse() {
  2549. }
  2550. public GetOrgDeptListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListResponseBody Body) {
  2551. this.Body = Body;
  2552. }
  2553. }
  2554. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2555. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2556. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2557. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2558. public partial class GetOrgDeptListResponseBody {
  2559. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2560. public CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetOrgDeptListResult;
  2561. public GetOrgDeptListResponseBody() {
  2562. }
  2563. public GetOrgDeptListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetOrgDeptListResult) {
  2564. this.GetOrgDeptListResult = GetOrgDeptListResult;
  2565. }
  2566. }
  2567. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2568. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2569. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2570. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2571. public partial class GetWardListRequest {
  2572. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetWardList", Namespace="http://tempuri.org/", Order=0)]
  2573. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListRequestBody Body;
  2574. public GetWardListRequest() {
  2575. }
  2576. public GetWardListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListRequestBody Body) {
  2577. this.Body = Body;
  2578. }
  2579. }
  2580. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2581. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2582. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2583. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2584. public partial class GetWardListRequestBody {
  2585. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2586. public string dutInstCd;
  2587. public GetWardListRequestBody() {
  2588. }
  2589. public GetWardListRequestBody(string dutInstCd) {
  2590. this.dutInstCd = dutInstCd;
  2591. }
  2592. }
  2593. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2594. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2595. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2596. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2597. public partial class GetWardListResponse {
  2598. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetWardListResponse", Namespace="http://tempuri.org/", Order=0)]
  2599. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListResponseBody Body;
  2600. public GetWardListResponse() {
  2601. }
  2602. public GetWardListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListResponseBody Body) {
  2603. this.Body = Body;
  2604. }
  2605. }
  2606. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2607. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2608. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2609. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2610. public partial class GetWardListResponseBody {
  2611. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2612. public CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetWardListResult;
  2613. public GetWardListResponseBody() {
  2614. }
  2615. public GetWardListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetWardListResult) {
  2616. this.GetWardListResult = GetWardListResult;
  2617. }
  2618. }
  2619. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2620. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2621. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2622. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2623. public partial class GetDoctorListRequest {
  2624. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetDoctorList", Namespace="http://tempuri.org/", Order=0)]
  2625. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListRequestBody Body;
  2626. public GetDoctorListRequest() {
  2627. }
  2628. public GetDoctorListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListRequestBody Body) {
  2629. this.Body = Body;
  2630. }
  2631. }
  2632. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2633. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2634. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2635. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2636. public partial class GetDoctorListRequestBody {
  2637. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2638. public string srchDd;
  2639. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2640. public string ordDeptCd;
  2641. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  2642. public string dutInstCd;
  2643. public GetDoctorListRequestBody() {
  2644. }
  2645. public GetDoctorListRequestBody(string srchDd, string ordDeptCd, string dutInstCd) {
  2646. this.srchDd = srchDd;
  2647. this.ordDeptCd = ordDeptCd;
  2648. this.dutInstCd = dutInstCd;
  2649. }
  2650. }
  2651. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2652. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2653. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2654. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2655. public partial class GetDoctorListResponse {
  2656. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetDoctorListResponse", Namespace="http://tempuri.org/", Order=0)]
  2657. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListResponseBody Body;
  2658. public GetDoctorListResponse() {
  2659. }
  2660. public GetDoctorListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListResponseBody Body) {
  2661. this.Body = Body;
  2662. }
  2663. }
  2664. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2665. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2666. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2667. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2668. public partial class GetDoctorListResponseBody {
  2669. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2670. public CLIP.eForm.Consent.UI.HospitalSvcRef.DocListVO[] GetDoctorListResult;
  2671. public GetDoctorListResponseBody() {
  2672. }
  2673. public GetDoctorListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.DocListVO[] GetDoctorListResult) {
  2674. this.GetDoctorListResult = GetDoctorListResult;
  2675. }
  2676. }
  2677. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2678. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2679. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2680. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2681. public partial class GetSupportDeptListRequest {
  2682. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetSupportDeptList", Namespace="http://tempuri.org/", Order=0)]
  2683. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListRequestBody Body;
  2684. public GetSupportDeptListRequest() {
  2685. }
  2686. public GetSupportDeptListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListRequestBody Body) {
  2687. this.Body = Body;
  2688. }
  2689. }
  2690. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2691. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2692. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2693. [System.Runtime.Serialization.DataContractAttribute()]
  2694. public partial class GetSupportDeptListRequestBody {
  2695. public GetSupportDeptListRequestBody() {
  2696. }
  2697. }
  2698. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2699. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2700. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2701. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2702. public partial class GetSupportDeptListResponse {
  2703. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetSupportDeptListResponse", Namespace="http://tempuri.org/", Order=0)]
  2704. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListResponseBody Body;
  2705. public GetSupportDeptListResponse() {
  2706. }
  2707. public GetSupportDeptListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListResponseBody Body) {
  2708. this.Body = Body;
  2709. }
  2710. }
  2711. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2712. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2713. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2714. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2715. public partial class GetSupportDeptListResponseBody {
  2716. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2717. public CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetSupportDeptListResult;
  2718. public GetSupportDeptListResponseBody() {
  2719. }
  2720. public GetSupportDeptListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetSupportDeptListResult) {
  2721. this.GetSupportDeptListResult = GetSupportDeptListResult;
  2722. }
  2723. }
  2724. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2725. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2726. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2727. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2728. public partial class GetInspectingRoomNameRequest {
  2729. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetInspectingRoomName", Namespace="http://tempuri.org/", Order=0)]
  2730. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameRequestBody Body;
  2731. public GetInspectingRoomNameRequest() {
  2732. }
  2733. public GetInspectingRoomNameRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameRequestBody Body) {
  2734. this.Body = Body;
  2735. }
  2736. }
  2737. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2738. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2739. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2740. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2741. public partial class GetInspectingRoomNameRequestBody {
  2742. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2743. public string deptCd;
  2744. public GetInspectingRoomNameRequestBody() {
  2745. }
  2746. public GetInspectingRoomNameRequestBody(string deptCd) {
  2747. this.deptCd = deptCd;
  2748. }
  2749. }
  2750. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2751. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2752. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2753. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2754. public partial class GetInspectingRoomNameResponse {
  2755. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetInspectingRoomNameResponse", Namespace="http://tempuri.org/", Order=0)]
  2756. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameResponseBody Body;
  2757. public GetInspectingRoomNameResponse() {
  2758. }
  2759. public GetInspectingRoomNameResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameResponseBody Body) {
  2760. this.Body = Body;
  2761. }
  2762. }
  2763. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2764. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2765. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2766. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2767. public partial class GetInspectingRoomNameResponseBody {
  2768. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2769. public CLIP.eForm.Consent.UI.HospitalSvcRef.InspectionVO[] GetInspectingRoomNameResult;
  2770. public GetInspectingRoomNameResponseBody() {
  2771. }
  2772. public GetInspectingRoomNameResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.InspectionVO[] GetInspectingRoomNameResult) {
  2773. this.GetInspectingRoomNameResult = GetInspectingRoomNameResult;
  2774. }
  2775. }
  2776. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2777. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2778. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2779. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2780. public partial class GetSrchPatInfoRequest {
  2781. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetSrchPatInfo", Namespace="http://tempuri.org/", Order=0)]
  2782. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoRequestBody Body;
  2783. public GetSrchPatInfoRequest() {
  2784. }
  2785. public GetSrchPatInfoRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoRequestBody Body) {
  2786. this.Body = Body;
  2787. }
  2788. }
  2789. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2790. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2791. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2792. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2793. public partial class GetSrchPatInfoRequestBody {
  2794. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2795. public string srchcond;
  2796. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2797. public string pid;
  2798. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  2799. public string hngnm;
  2800. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  2801. public string rrgstno1;
  2802. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  2803. public string rrgstno2;
  2804. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  2805. public string dutinstcd;
  2806. public GetSrchPatInfoRequestBody() {
  2807. }
  2808. public GetSrchPatInfoRequestBody(string srchcond, string pid, string hngnm, string rrgstno1, string rrgstno2, string dutinstcd) {
  2809. this.srchcond = srchcond;
  2810. this.pid = pid;
  2811. this.hngnm = hngnm;
  2812. this.rrgstno1 = rrgstno1;
  2813. this.rrgstno2 = rrgstno2;
  2814. this.dutinstcd = dutinstcd;
  2815. }
  2816. }
  2817. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2818. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2819. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2820. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2821. public partial class GetSrchPatInfoResponse {
  2822. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetSrchPatInfoResponse", Namespace="http://tempuri.org/", Order=0)]
  2823. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoResponseBody Body;
  2824. public GetSrchPatInfoResponse() {
  2825. }
  2826. public GetSrchPatInfoResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoResponseBody Body) {
  2827. this.Body = Body;
  2828. }
  2829. }
  2830. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2831. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2832. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2833. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2834. public partial class GetSrchPatInfoResponseBody {
  2835. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2836. public CLIP.eForm.Consent.UI.HospitalSvcRef.PatInfoListVO[] GetSrchPatInfoResult;
  2837. public GetSrchPatInfoResponseBody() {
  2838. }
  2839. public GetSrchPatInfoResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.PatInfoListVO[] GetSrchPatInfoResult) {
  2840. this.GetSrchPatInfoResult = GetSrchPatInfoResult;
  2841. }
  2842. }
  2843. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2844. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2845. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2846. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2847. public partial class GetPatientInfoRequest {
  2848. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPatientInfo", Namespace="http://tempuri.org/", Order=0)]
  2849. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoRequestBody Body;
  2850. public GetPatientInfoRequest() {
  2851. }
  2852. public GetPatientInfoRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoRequestBody Body) {
  2853. this.Body = Body;
  2854. }
  2855. }
  2856. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2857. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2858. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2859. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2860. public partial class GetPatientInfoRequestBody {
  2861. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2862. public string pid;
  2863. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2864. public string ordDd;
  2865. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  2866. public string ordType;
  2867. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  2868. public string ordDeptCd;
  2869. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  2870. public string cretNo;
  2871. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  2872. public string dutInstCd;
  2873. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
  2874. public string opRsrvNo;
  2875. public GetPatientInfoRequestBody() {
  2876. }
  2877. public GetPatientInfoRequestBody(string pid, string ordDd, string ordType, string ordDeptCd, string cretNo, string dutInstCd, string opRsrvNo) {
  2878. this.pid = pid;
  2879. this.ordDd = ordDd;
  2880. this.ordType = ordType;
  2881. this.ordDeptCd = ordDeptCd;
  2882. this.cretNo = cretNo;
  2883. this.dutInstCd = dutInstCd;
  2884. this.opRsrvNo = opRsrvNo;
  2885. }
  2886. }
  2887. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2888. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2889. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2890. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2891. public partial class GetPatientInfoResponse {
  2892. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPatientInfoResponse", Namespace="http://tempuri.org/", Order=0)]
  2893. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoResponseBody Body;
  2894. public GetPatientInfoResponse() {
  2895. }
  2896. public GetPatientInfoResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoResponseBody Body) {
  2897. this.Body = Body;
  2898. }
  2899. }
  2900. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2901. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2902. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2903. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2904. public partial class GetPatientInfoResponseBody {
  2905. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2906. public CLIP.eForm.Consent.UI.HospitalSvcRef.PatientVO[] GetPatientInfoResult;
  2907. public GetPatientInfoResponseBody() {
  2908. }
  2909. public GetPatientInfoResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.PatientVO[] GetPatientInfoResult) {
  2910. this.GetPatientInfoResult = GetPatientInfoResult;
  2911. }
  2912. }
  2913. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2914. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2915. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2916. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2917. public partial class SetUserFormSetListRequest {
  2918. [System.ServiceModel.MessageBodyMemberAttribute(Name="SetUserFormSetList", Namespace="http://tempuri.org/", Order=0)]
  2919. public CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListRequestBody Body;
  2920. public SetUserFormSetListRequest() {
  2921. }
  2922. public SetUserFormSetListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListRequestBody Body) {
  2923. this.Body = Body;
  2924. }
  2925. }
  2926. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2927. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2928. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2929. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2930. public partial class SetUserFormSetListRequestBody {
  2931. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2932. public string userId;
  2933. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2934. public string formCd;
  2935. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  2936. public string dutInstCd;
  2937. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  2938. public string toDay;
  2939. public SetUserFormSetListRequestBody() {
  2940. }
  2941. public SetUserFormSetListRequestBody(string userId, string formCd, string dutInstCd, string toDay) {
  2942. this.userId = userId;
  2943. this.formCd = formCd;
  2944. this.dutInstCd = dutInstCd;
  2945. this.toDay = toDay;
  2946. }
  2947. }
  2948. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2949. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2950. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2951. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2952. public partial class SetUserFormSetListResponse {
  2953. [System.ServiceModel.MessageBodyMemberAttribute(Name="SetUserFormSetListResponse", Namespace="http://tempuri.org/", Order=0)]
  2954. public CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListResponseBody Body;
  2955. public SetUserFormSetListResponse() {
  2956. }
  2957. public SetUserFormSetListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListResponseBody Body) {
  2958. this.Body = Body;
  2959. }
  2960. }
  2961. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2962. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2963. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2964. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2965. public partial class SetUserFormSetListResponseBody {
  2966. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2967. public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData SetUserFormSetListResult;
  2968. public SetUserFormSetListResponseBody() {
  2969. }
  2970. public SetUserFormSetListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData SetUserFormSetListResult) {
  2971. this.SetUserFormSetListResult = SetUserFormSetListResult;
  2972. }
  2973. }
  2974. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2975. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2976. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2977. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2978. public partial class DelUserFormSetListRequest {
  2979. [System.ServiceModel.MessageBodyMemberAttribute(Name="DelUserFormSetList", Namespace="http://tempuri.org/", Order=0)]
  2980. public CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListRequestBody Body;
  2981. public DelUserFormSetListRequest() {
  2982. }
  2983. public DelUserFormSetListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListRequestBody Body) {
  2984. this.Body = Body;
  2985. }
  2986. }
  2987. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2988. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2989. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2990. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2991. public partial class DelUserFormSetListRequestBody {
  2992. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2993. public string idx;
  2994. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2995. public string userId;
  2996. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  2997. public string formCd;
  2998. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  2999. public string dutInstCd;
  3000. public DelUserFormSetListRequestBody() {
  3001. }
  3002. public DelUserFormSetListRequestBody(string idx, string userId, string formCd, string dutInstCd) {
  3003. this.idx = idx;
  3004. this.userId = userId;
  3005. this.formCd = formCd;
  3006. this.dutInstCd = dutInstCd;
  3007. }
  3008. }
  3009. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3010. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3011. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3012. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3013. public partial class DelUserFormSetListResponse {
  3014. [System.ServiceModel.MessageBodyMemberAttribute(Name="DelUserFormSetListResponse", Namespace="http://tempuri.org/", Order=0)]
  3015. public CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListResponseBody Body;
  3016. public DelUserFormSetListResponse() {
  3017. }
  3018. public DelUserFormSetListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListResponseBody Body) {
  3019. this.Body = Body;
  3020. }
  3021. }
  3022. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3023. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3024. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3025. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3026. public partial class DelUserFormSetListResponseBody {
  3027. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3028. public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData DelUserFormSetListResult;
  3029. public DelUserFormSetListResponseBody() {
  3030. }
  3031. public DelUserFormSetListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData DelUserFormSetListResult) {
  3032. this.DelUserFormSetListResult = DelUserFormSetListResult;
  3033. }
  3034. }
  3035. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3036. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3037. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3038. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3039. public partial class GetOcrTagRequest {
  3040. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetOcrTag", Namespace="http://tempuri.org/", Order=0)]
  3041. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagRequestBody Body;
  3042. public GetOcrTagRequest() {
  3043. }
  3044. public GetOcrTagRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagRequestBody Body) {
  3045. this.Body = Body;
  3046. }
  3047. }
  3048. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3049. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3050. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3051. [System.Runtime.Serialization.DataContractAttribute()]
  3052. public partial class GetOcrTagRequestBody {
  3053. public GetOcrTagRequestBody() {
  3054. }
  3055. }
  3056. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3057. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3058. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3059. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3060. public partial class GetOcrTagResponse {
  3061. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetOcrTagResponse", Namespace="http://tempuri.org/", Order=0)]
  3062. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagResponseBody Body;
  3063. public GetOcrTagResponse() {
  3064. }
  3065. public GetOcrTagResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagResponseBody Body) {
  3066. this.Body = Body;
  3067. }
  3068. }
  3069. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3070. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3071. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3072. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3073. public partial class GetOcrTagResponseBody {
  3074. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3075. public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData GetOcrTagResult;
  3076. public GetOcrTagResponseBody() {
  3077. }
  3078. public GetOcrTagResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData GetOcrTagResult) {
  3079. this.GetOcrTagResult = GetOcrTagResult;
  3080. }
  3081. }
  3082. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3083. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3084. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3085. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3086. public partial class GetSignImageRequest {
  3087. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetSignImage", Namespace="http://tempuri.org/", Order=0)]
  3088. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageRequestBody Body;
  3089. public GetSignImageRequest() {
  3090. }
  3091. public GetSignImageRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageRequestBody Body) {
  3092. this.Body = Body;
  3093. }
  3094. }
  3095. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3096. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3097. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3098. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3099. public partial class GetSignImageRequestBody {
  3100. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3101. public string userId;
  3102. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  3103. public string instCd;
  3104. public GetSignImageRequestBody() {
  3105. }
  3106. public GetSignImageRequestBody(string userId, string instCd) {
  3107. this.userId = userId;
  3108. this.instCd = instCd;
  3109. }
  3110. }
  3111. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3112. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3113. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3114. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3115. public partial class GetSignImageResponse {
  3116. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetSignImageResponse", Namespace="http://tempuri.org/", Order=0)]
  3117. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageResponseBody Body;
  3118. public GetSignImageResponse() {
  3119. }
  3120. public GetSignImageResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageResponseBody Body) {
  3121. this.Body = Body;
  3122. }
  3123. }
  3124. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3125. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3126. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3127. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3128. public partial class GetSignImageResponseBody {
  3129. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3130. public CLIP.eForm.Consent.UI.HospitalSvcRef.UserSignImageVO GetSignImageResult;
  3131. public GetSignImageResponseBody() {
  3132. }
  3133. public GetSignImageResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.UserSignImageVO GetSignImageResult) {
  3134. this.GetSignImageResult = GetSignImageResult;
  3135. }
  3136. }
  3137. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3138. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3139. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3140. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3141. public partial class GetDiagNameListRequest {
  3142. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetDiagNameList", Namespace="http://tempuri.org/", Order=0)]
  3143. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListRequestBody Body;
  3144. public GetDiagNameListRequest() {
  3145. }
  3146. public GetDiagNameListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListRequestBody Body) {
  3147. this.Body = Body;
  3148. }
  3149. }
  3150. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3151. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3152. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3153. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3154. public partial class GetDiagNameListRequestBody {
  3155. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3156. public string pid;
  3157. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  3158. public string orddd;
  3159. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  3160. public string dutinstcd;
  3161. public GetDiagNameListRequestBody() {
  3162. }
  3163. public GetDiagNameListRequestBody(string pid, string orddd, string dutinstcd) {
  3164. this.pid = pid;
  3165. this.orddd = orddd;
  3166. this.dutinstcd = dutinstcd;
  3167. }
  3168. }
  3169. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3170. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3171. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3172. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3173. public partial class GetDiagNameListResponse {
  3174. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetDiagNameListResponse", Namespace="http://tempuri.org/", Order=0)]
  3175. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListResponseBody Body;
  3176. public GetDiagNameListResponse() {
  3177. }
  3178. public GetDiagNameListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListResponseBody Body) {
  3179. this.Body = Body;
  3180. }
  3181. }
  3182. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3183. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3184. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3185. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3186. public partial class GetDiagNameListResponseBody {
  3187. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3188. public CLIP.eForm.Consent.UI.HospitalSvcRef.ArrayOfString GetDiagNameListResult;
  3189. public GetDiagNameListResponseBody() {
  3190. }
  3191. public GetDiagNameListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.ArrayOfString GetDiagNameListResult) {
  3192. this.GetDiagNameListResult = GetDiagNameListResult;
  3193. }
  3194. }
  3195. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3196. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3197. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3198. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3199. public partial class GetFileNameRequest {
  3200. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetFileName", Namespace="http://tempuri.org/", Order=0)]
  3201. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameRequestBody Body;
  3202. public GetFileNameRequest() {
  3203. }
  3204. public GetFileNameRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameRequestBody Body) {
  3205. this.Body = Body;
  3206. }
  3207. }
  3208. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3209. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3210. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3211. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3212. public partial class GetFileNameRequestBody {
  3213. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3214. public string pid;
  3215. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  3216. public string ordtype;
  3217. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  3218. public string orddd;
  3219. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  3220. public string dschdd;
  3221. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  3222. public string cretno;
  3223. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  3224. public string filesize;
  3225. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
  3226. public string formcd;
  3227. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
  3228. public string pageno;
  3229. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
  3230. public string ocrtag;
  3231. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
  3232. public string userid;
  3233. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
  3234. public string orddeptcd;
  3235. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
  3236. public string dutinstcd;
  3237. public GetFileNameRequestBody() {
  3238. }
  3239. public GetFileNameRequestBody(string pid, string ordtype, string orddd, string dschdd, string cretno, string filesize, string formcd, string pageno, string ocrtag, string userid, string orddeptcd, string dutinstcd) {
  3240. this.pid = pid;
  3241. this.ordtype = ordtype;
  3242. this.orddd = orddd;
  3243. this.dschdd = dschdd;
  3244. this.cretno = cretno;
  3245. this.filesize = filesize;
  3246. this.formcd = formcd;
  3247. this.pageno = pageno;
  3248. this.ocrtag = ocrtag;
  3249. this.userid = userid;
  3250. this.orddeptcd = orddeptcd;
  3251. this.dutinstcd = dutinstcd;
  3252. }
  3253. }
  3254. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3255. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3256. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3257. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3258. public partial class GetFileNameResponse {
  3259. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetFileNameResponse", Namespace="http://tempuri.org/", Order=0)]
  3260. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameResponseBody Body;
  3261. public GetFileNameResponse() {
  3262. }
  3263. public GetFileNameResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameResponseBody Body) {
  3264. this.Body = Body;
  3265. }
  3266. }
  3267. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3268. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3269. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3270. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3271. public partial class GetFileNameResponseBody {
  3272. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3273. public string GetFileNameResult;
  3274. public GetFileNameResponseBody() {
  3275. }
  3276. public GetFileNameResponseBody(string GetFileNameResult) {
  3277. this.GetFileNameResult = GetFileNameResult;
  3278. }
  3279. }
  3280. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3281. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3282. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3283. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3284. public partial class delEformDataRequest {
  3285. [System.ServiceModel.MessageBodyMemberAttribute(Name="delEformData", Namespace="http://tempuri.org/", Order=0)]
  3286. public CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataRequestBody Body;
  3287. public delEformDataRequest() {
  3288. }
  3289. public delEformDataRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataRequestBody Body) {
  3290. this.Body = Body;
  3291. }
  3292. }
  3293. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3294. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3295. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3296. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3297. public partial class delEformDataRequestBody {
  3298. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3299. public string pid;
  3300. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  3301. public string ordtype;
  3302. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  3303. public string orddd;
  3304. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  3305. public string dschdd;
  3306. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  3307. public string cretno;
  3308. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  3309. public string formcd;
  3310. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
  3311. public string ocrtag;
  3312. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
  3313. public string userid;
  3314. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
  3315. public string username;
  3316. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
  3317. public string consentmstrid;
  3318. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
  3319. public string hostype;
  3320. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
  3321. public string orddeptcd;
  3322. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
  3323. public string dutinstcd;
  3324. public delEformDataRequestBody() {
  3325. }
  3326. public delEformDataRequestBody(string pid, string ordtype, string orddd, string dschdd, string cretno, string formcd, string ocrtag, string userid, string username, string consentmstrid, string hostype, string orddeptcd, string dutinstcd) {
  3327. this.pid = pid;
  3328. this.ordtype = ordtype;
  3329. this.orddd = orddd;
  3330. this.dschdd = dschdd;
  3331. this.cretno = cretno;
  3332. this.formcd = formcd;
  3333. this.ocrtag = ocrtag;
  3334. this.userid = userid;
  3335. this.username = username;
  3336. this.consentmstrid = consentmstrid;
  3337. this.hostype = hostype;
  3338. this.orddeptcd = orddeptcd;
  3339. this.dutinstcd = dutinstcd;
  3340. }
  3341. }
  3342. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3343. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3344. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3345. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3346. public partial class delEformDataResponse {
  3347. [System.ServiceModel.MessageBodyMemberAttribute(Name="delEformDataResponse", Namespace="http://tempuri.org/", Order=0)]
  3348. public CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataResponseBody Body;
  3349. public delEformDataResponse() {
  3350. }
  3351. public delEformDataResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataResponseBody Body) {
  3352. this.Body = Body;
  3353. }
  3354. }
  3355. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3356. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3357. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3358. [System.Runtime.Serialization.DataContractAttribute()]
  3359. public partial class delEformDataResponseBody {
  3360. public delEformDataResponseBody() {
  3361. }
  3362. }
  3363. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3364. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3365. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3366. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3367. public partial class UpdateUserSetupRequest {
  3368. [System.ServiceModel.MessageBodyMemberAttribute(Name="UpdateUserSetup", Namespace="http://tempuri.org/", Order=0)]
  3369. public CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupRequestBody Body;
  3370. public UpdateUserSetupRequest() {
  3371. }
  3372. public UpdateUserSetupRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupRequestBody Body) {
  3373. this.Body = Body;
  3374. }
  3375. }
  3376. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3377. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3378. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3379. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3380. public partial class UpdateUserSetupRequestBody {
  3381. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3382. public string userId;
  3383. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  3384. public string status;
  3385. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  3386. public string instCd;
  3387. public UpdateUserSetupRequestBody() {
  3388. }
  3389. public UpdateUserSetupRequestBody(string userId, string status, string instCd) {
  3390. this.userId = userId;
  3391. this.status = status;
  3392. this.instCd = instCd;
  3393. }
  3394. }
  3395. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3396. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3397. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3398. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3399. public partial class UpdateUserSetupResponse {
  3400. [System.ServiceModel.MessageBodyMemberAttribute(Name="UpdateUserSetupResponse", Namespace="http://tempuri.org/", Order=0)]
  3401. public CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupResponseBody Body;
  3402. public UpdateUserSetupResponse() {
  3403. }
  3404. public UpdateUserSetupResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupResponseBody Body) {
  3405. this.Body = Body;
  3406. }
  3407. }
  3408. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3409. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3410. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3411. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3412. public partial class UpdateUserSetupResponseBody {
  3413. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3414. public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData UpdateUserSetupResult;
  3415. public UpdateUserSetupResponseBody() {
  3416. }
  3417. public UpdateUserSetupResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData UpdateUserSetupResult) {
  3418. this.UpdateUserSetupResult = UpdateUserSetupResult;
  3419. }
  3420. }
  3421. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3422. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3423. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3424. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3425. public partial class doLoginRequest {
  3426. [System.ServiceModel.MessageBodyMemberAttribute(Name="doLogin", Namespace="http://tempuri.org/", Order=0)]
  3427. public CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginRequestBody Body;
  3428. public doLoginRequest() {
  3429. }
  3430. public doLoginRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginRequestBody Body) {
  3431. this.Body = Body;
  3432. }
  3433. }
  3434. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3435. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3436. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3437. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3438. public partial class doLoginRequestBody {
  3439. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3440. public string userId;
  3441. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  3442. public string sha256EncPw;
  3443. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  3444. public string md5EncPw;
  3445. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  3446. public string dutInstCd;
  3447. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  3448. public string certSucc;
  3449. public doLoginRequestBody() {
  3450. }
  3451. public doLoginRequestBody(string userId, string sha256EncPw, string md5EncPw, string dutInstCd, string certSucc) {
  3452. this.userId = userId;
  3453. this.sha256EncPw = sha256EncPw;
  3454. this.md5EncPw = md5EncPw;
  3455. this.dutInstCd = dutInstCd;
  3456. this.certSucc = certSucc;
  3457. }
  3458. }
  3459. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3460. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3461. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3462. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3463. public partial class doLoginResponse {
  3464. [System.ServiceModel.MessageBodyMemberAttribute(Name="doLoginResponse", Namespace="http://tempuri.org/", Order=0)]
  3465. public CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginResponseBody Body;
  3466. public doLoginResponse() {
  3467. }
  3468. public doLoginResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginResponseBody Body) {
  3469. this.Body = Body;
  3470. }
  3471. }
  3472. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3473. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3474. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3475. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3476. public partial class doLoginResponseBody {
  3477. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3478. public CLIP.eForm.Consent.UI.HospitalSvcRef.UserLoginDeptList[] doLoginResult;
  3479. public doLoginResponseBody() {
  3480. }
  3481. public doLoginResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.UserLoginDeptList[] doLoginResult) {
  3482. this.doLoginResult = doLoginResult;
  3483. }
  3484. }
  3485. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3486. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3487. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3488. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3489. public partial class userLoginOutLogRequest {
  3490. [System.ServiceModel.MessageBodyMemberAttribute(Name="userLoginOutLog", Namespace="http://tempuri.org/", Order=0)]
  3491. public CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogRequestBody Body;
  3492. public userLoginOutLogRequest() {
  3493. }
  3494. public userLoginOutLogRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogRequestBody Body) {
  3495. this.Body = Body;
  3496. }
  3497. }
  3498. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3499. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3500. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3501. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3502. public partial class userLoginOutLogRequestBody {
  3503. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3504. public string userId;
  3505. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  3506. public string loginStatus;
  3507. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  3508. public string deviceType;
  3509. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  3510. public string macAddress;
  3511. public userLoginOutLogRequestBody() {
  3512. }
  3513. public userLoginOutLogRequestBody(string userId, string loginStatus, string deviceType, string macAddress) {
  3514. this.userId = userId;
  3515. this.loginStatus = loginStatus;
  3516. this.deviceType = deviceType;
  3517. this.macAddress = macAddress;
  3518. }
  3519. }
  3520. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3521. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3522. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3523. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3524. public partial class userLoginOutLogResponse {
  3525. [System.ServiceModel.MessageBodyMemberAttribute(Name="userLoginOutLogResponse", Namespace="http://tempuri.org/", Order=0)]
  3526. public CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogResponseBody Body;
  3527. public userLoginOutLogResponse() {
  3528. }
  3529. public userLoginOutLogResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogResponseBody Body) {
  3530. this.Body = Body;
  3531. }
  3532. }
  3533. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3534. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3535. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3536. [System.Runtime.Serialization.DataContractAttribute()]
  3537. public partial class userLoginOutLogResponseBody {
  3538. public userLoginOutLogResponseBody() {
  3539. }
  3540. }
  3541. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3542. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3543. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3544. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3545. public partial class GetMobileUserInfoRequest {
  3546. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetMobileUserInfo", Namespace="http://tempuri.org/", Order=0)]
  3547. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoRequestBody Body;
  3548. public GetMobileUserInfoRequest() {
  3549. }
  3550. public GetMobileUserInfoRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoRequestBody Body) {
  3551. this.Body = Body;
  3552. }
  3553. }
  3554. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3555. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3556. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3557. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3558. public partial class GetMobileUserInfoRequestBody {
  3559. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3560. public string userid;
  3561. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  3562. public string dutplceinstcd;
  3563. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  3564. public string dutplcecd;
  3565. public GetMobileUserInfoRequestBody() {
  3566. }
  3567. public GetMobileUserInfoRequestBody(string userid, string dutplceinstcd, string dutplcecd) {
  3568. this.userid = userid;
  3569. this.dutplceinstcd = dutplceinstcd;
  3570. this.dutplcecd = dutplcecd;
  3571. }
  3572. }
  3573. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3574. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3575. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3576. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3577. public partial class GetMobileUserInfoResponse {
  3578. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetMobileUserInfoResponse", Namespace="http://tempuri.org/", Order=0)]
  3579. public CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoResponseBody Body;
  3580. public GetMobileUserInfoResponse() {
  3581. }
  3582. public GetMobileUserInfoResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoResponseBody Body) {
  3583. this.Body = Body;
  3584. }
  3585. }
  3586. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3587. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3588. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3589. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3590. public partial class GetMobileUserInfoResponseBody {
  3591. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3592. public CLIP.eForm.Consent.UI.HospitalSvcRef.MobileUserInfo GetMobileUserInfoResult;
  3593. public GetMobileUserInfoResponseBody() {
  3594. }
  3595. public GetMobileUserInfoResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.MobileUserInfo GetMobileUserInfoResult) {
  3596. this.GetMobileUserInfoResult = GetMobileUserInfoResult;
  3597. }
  3598. }
  3599. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3600. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3601. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3602. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3603. public partial class getUserPrefMonitorRequest {
  3604. [System.ServiceModel.MessageBodyMemberAttribute(Name="getUserPrefMonitor", Namespace="http://tempuri.org/", Order=0)]
  3605. public CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorRequestBody Body;
  3606. public getUserPrefMonitorRequest() {
  3607. }
  3608. public getUserPrefMonitorRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorRequestBody Body) {
  3609. this.Body = Body;
  3610. }
  3611. }
  3612. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3613. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3614. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3615. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3616. public partial class getUserPrefMonitorRequestBody {
  3617. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3618. public string userId;
  3619. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  3620. public string instcd;
  3621. public getUserPrefMonitorRequestBody() {
  3622. }
  3623. public getUserPrefMonitorRequestBody(string userId, string instcd) {
  3624. this.userId = userId;
  3625. this.instcd = instcd;
  3626. }
  3627. }
  3628. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3629. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3630. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3631. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3632. public partial class getUserPrefMonitorResponse {
  3633. [System.ServiceModel.MessageBodyMemberAttribute(Name="getUserPrefMonitorResponse", Namespace="http://tempuri.org/", Order=0)]
  3634. public CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorResponseBody Body;
  3635. public getUserPrefMonitorResponse() {
  3636. }
  3637. public getUserPrefMonitorResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorResponseBody Body) {
  3638. this.Body = Body;
  3639. }
  3640. }
  3641. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3642. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3643. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3644. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3645. public partial class getUserPrefMonitorResponseBody {
  3646. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3647. public string getUserPrefMonitorResult;
  3648. public getUserPrefMonitorResponseBody() {
  3649. }
  3650. public getUserPrefMonitorResponseBody(string getUserPrefMonitorResult) {
  3651. this.getUserPrefMonitorResult = getUserPrefMonitorResult;
  3652. }
  3653. }
  3654. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3655. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3656. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3657. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3658. public partial class SetSupportUserDataRequest {
  3659. [System.ServiceModel.MessageBodyMemberAttribute(Name="SetSupportUserData", Namespace="http://tempuri.org/", Order=0)]
  3660. public CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataRequestBody Body;
  3661. public SetSupportUserDataRequest() {
  3662. }
  3663. public SetSupportUserDataRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataRequestBody Body) {
  3664. this.Body = Body;
  3665. }
  3666. }
  3667. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3668. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3669. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3670. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3671. public partial class SetSupportUserDataRequestBody {
  3672. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3673. public string userId;
  3674. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  3675. public string baseCd;
  3676. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  3677. public string supportDeptCd;
  3678. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  3679. public string supportDeptNm;
  3680. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  3681. public string macAddress;
  3682. public SetSupportUserDataRequestBody() {
  3683. }
  3684. public SetSupportUserDataRequestBody(string userId, string baseCd, string supportDeptCd, string supportDeptNm, string macAddress) {
  3685. this.userId = userId;
  3686. this.baseCd = baseCd;
  3687. this.supportDeptCd = supportDeptCd;
  3688. this.supportDeptNm = supportDeptNm;
  3689. this.macAddress = macAddress;
  3690. }
  3691. }
  3692. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3693. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3694. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3695. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3696. public partial class SetSupportUserDataResponse {
  3697. [System.ServiceModel.MessageBodyMemberAttribute(Name="SetSupportUserDataResponse", Namespace="http://tempuri.org/", Order=0)]
  3698. public CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataResponseBody Body;
  3699. public SetSupportUserDataResponse() {
  3700. }
  3701. public SetSupportUserDataResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataResponseBody Body) {
  3702. this.Body = Body;
  3703. }
  3704. }
  3705. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3706. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3707. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3708. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3709. public partial class SetSupportUserDataResponseBody {
  3710. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3711. public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData SetSupportUserDataResult;
  3712. public SetSupportUserDataResponseBody() {
  3713. }
  3714. public SetSupportUserDataResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData SetSupportUserDataResult) {
  3715. this.SetSupportUserDataResult = SetSupportUserDataResult;
  3716. }
  3717. }
  3718. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3719. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3720. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3721. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3722. public partial class SetUserPrefMonitorRequest {
  3723. [System.ServiceModel.MessageBodyMemberAttribute(Name="SetUserPrefMonitor", Namespace="http://tempuri.org/", Order=0)]
  3724. public CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorRequestBody Body;
  3725. public SetUserPrefMonitorRequest() {
  3726. }
  3727. public SetUserPrefMonitorRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorRequestBody Body) {
  3728. this.Body = Body;
  3729. }
  3730. }
  3731. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3732. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3733. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3734. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3735. public partial class SetUserPrefMonitorRequestBody {
  3736. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3737. public string userId;
  3738. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  3739. public string monitorNo;
  3740. public SetUserPrefMonitorRequestBody() {
  3741. }
  3742. public SetUserPrefMonitorRequestBody(string userId, string monitorNo) {
  3743. this.userId = userId;
  3744. this.monitorNo = monitorNo;
  3745. }
  3746. }
  3747. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3748. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3749. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3750. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3751. public partial class SetUserPrefMonitorResponse {
  3752. [System.ServiceModel.MessageBodyMemberAttribute(Name="SetUserPrefMonitorResponse", Namespace="http://tempuri.org/", Order=0)]
  3753. public CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorResponseBody Body;
  3754. public SetUserPrefMonitorResponse() {
  3755. }
  3756. public SetUserPrefMonitorResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorResponseBody Body) {
  3757. this.Body = Body;
  3758. }
  3759. }
  3760. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3761. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3762. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3763. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3764. public partial class SetUserPrefMonitorResponseBody {
  3765. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3766. public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData SetUserPrefMonitorResult;
  3767. public SetUserPrefMonitorResponseBody() {
  3768. }
  3769. public SetUserPrefMonitorResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData SetUserPrefMonitorResult) {
  3770. this.SetUserPrefMonitorResult = SetUserPrefMonitorResult;
  3771. }
  3772. }
  3773. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3774. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3775. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3776. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3777. public partial class getSessionTimeRequest {
  3778. [System.ServiceModel.MessageBodyMemberAttribute(Name="getSessionTime", Namespace="http://tempuri.org/", Order=0)]
  3779. public CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeRequestBody Body;
  3780. public getSessionTimeRequest() {
  3781. }
  3782. public getSessionTimeRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeRequestBody Body) {
  3783. this.Body = Body;
  3784. }
  3785. }
  3786. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3787. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3788. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3789. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3790. public partial class getSessionTimeRequestBody {
  3791. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3792. public string instcd;
  3793. public getSessionTimeRequestBody() {
  3794. }
  3795. public getSessionTimeRequestBody(string instcd) {
  3796. this.instcd = instcd;
  3797. }
  3798. }
  3799. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3800. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3801. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3802. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3803. public partial class getSessionTimeResponse {
  3804. [System.ServiceModel.MessageBodyMemberAttribute(Name="getSessionTimeResponse", Namespace="http://tempuri.org/", Order=0)]
  3805. public CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeResponseBody Body;
  3806. public getSessionTimeResponse() {
  3807. }
  3808. public getSessionTimeResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeResponseBody Body) {
  3809. this.Body = Body;
  3810. }
  3811. }
  3812. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3813. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3814. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3815. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3816. public partial class getSessionTimeResponseBody {
  3817. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3818. public string getSessionTimeResult;
  3819. public getSessionTimeResponseBody() {
  3820. }
  3821. public getSessionTimeResponseBody(string getSessionTimeResult) {
  3822. this.getSessionTimeResult = getSessionTimeResult;
  3823. }
  3824. }
  3825. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3826. public interface HospitalSvcSoapChannel : CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap, System.ServiceModel.IClientChannel {
  3827. }
  3828. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3829. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3830. public partial class HospitalSvcSoapClient : System.ServiceModel.ClientBase<CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap>, CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap {
  3831. public HospitalSvcSoapClient() {
  3832. }
  3833. public HospitalSvcSoapClient(string endpointConfigurationName) :
  3834. base(endpointConfigurationName) {
  3835. }
  3836. public HospitalSvcSoapClient(string endpointConfigurationName, string remoteAddress) :
  3837. base(endpointConfigurationName, remoteAddress) {
  3838. }
  3839. public HospitalSvcSoapClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
  3840. base(endpointConfigurationName, remoteAddress) {
  3841. }
  3842. public HospitalSvcSoapClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
  3843. base(binding, remoteAddress) {
  3844. }
  3845. public bool CheckWebService() {
  3846. return base.Channel.CheckWebService();
  3847. }
  3848. public bool CheckDatabaseConnection() {
  3849. return base.Channel.CheckDatabaseConnection();
  3850. }
  3851. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3852. CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetSettingData(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataRequest request) {
  3853. return base.Channel.GetSettingData(request);
  3854. }
  3855. public CLIP.eForm.Consent.UI.HospitalSvcRef.SettingListVO[] GetSettingData() {
  3856. CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataRequest();
  3857. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataRequestBody();
  3858. CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetSettingData(inValue);
  3859. return retVal.Body.GetSettingDataResult;
  3860. }
  3861. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3862. CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetUserInfo(CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoRequest request) {
  3863. return base.Channel.GetUserInfo(request);
  3864. }
  3865. public CLIP.eForm.Consent.UI.HospitalSvcRef.UserVO GetUserInfo(string userid, string dutinstcd, string dutplcecd) {
  3866. CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoRequest();
  3867. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoRequestBody();
  3868. inValue.Body.userid = userid;
  3869. inValue.Body.dutinstcd = dutinstcd;
  3870. inValue.Body.dutplcecd = dutplcecd;
  3871. CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetUserInfo(inValue);
  3872. return retVal.Body.GetUserInfoResult;
  3873. }
  3874. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3875. CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetTrmtDateList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListRequest request) {
  3876. return base.Channel.GetTrmtDateList(request);
  3877. }
  3878. public CLIP.eForm.Consent.UI.HospitalSvcRef.ClnDateForDropdownVO[] GetTrmtDateList(string patientNo, string searchClnDate, string searchType, string orddeptcd, string dutinstcd, string ordType) {
  3879. CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListRequest();
  3880. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListRequestBody();
  3881. inValue.Body.patientNo = patientNo;
  3882. inValue.Body.searchClnDate = searchClnDate;
  3883. inValue.Body.searchType = searchType;
  3884. inValue.Body.orddeptcd = orddeptcd;
  3885. inValue.Body.dutinstcd = dutinstcd;
  3886. inValue.Body.ordType = ordType;
  3887. CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetTrmtDateList(inValue);
  3888. return retVal.Body.GetTrmtDateListResult;
  3889. }
  3890. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3891. CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetPatientList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListRequest request) {
  3892. return base.Channel.GetPatientList(request);
  3893. }
  3894. public CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientList(string selectFlag, string srchYN, string srchDd, string ordDeptCd, string doctorId, string pid, string wardCd, string patientState, string dutInstCd, string userId, string myPatient, string drKind) {
  3895. CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListRequest();
  3896. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListRequestBody();
  3897. inValue.Body.selectFlag = selectFlag;
  3898. inValue.Body.srchYN = srchYN;
  3899. inValue.Body.srchDd = srchDd;
  3900. inValue.Body.ordDeptCd = ordDeptCd;
  3901. inValue.Body.doctorId = doctorId;
  3902. inValue.Body.pid = pid;
  3903. inValue.Body.wardCd = wardCd;
  3904. inValue.Body.patientState = patientState;
  3905. inValue.Body.dutInstCd = dutInstCd;
  3906. inValue.Body.userId = userId;
  3907. inValue.Body.myPatient = myPatient;
  3908. inValue.Body.drKind = drKind;
  3909. CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetPatientList(inValue);
  3910. return retVal.Body.GetPatientListResult;
  3911. }
  3912. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3913. CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetPatientExList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListRequest request) {
  3914. return base.Channel.GetPatientExList(request);
  3915. }
  3916. public CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientExList(string selectFlag, string toDt, string fromDt, string baseCd, string supportDeptCd, string pid, string patientState) {
  3917. CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListRequest();
  3918. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListRequestBody();
  3919. inValue.Body.selectFlag = selectFlag;
  3920. inValue.Body.toDt = toDt;
  3921. inValue.Body.fromDt = fromDt;
  3922. inValue.Body.baseCd = baseCd;
  3923. inValue.Body.supportDeptCd = supportDeptCd;
  3924. inValue.Body.pid = pid;
  3925. inValue.Body.patientState = patientState;
  3926. CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetPatientExList(inValue);
  3927. return retVal.Body.GetPatientExListResult;
  3928. }
  3929. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3930. CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetPatientExListPC(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCRequest request) {
  3931. return base.Channel.GetPatientExListPC(request);
  3932. }
  3933. public CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientExListPC(string selectFlag, string toDt, string fromDt, string baseCd, string supportDeptCd, string pid, string patientState, string isMainD, string mainDrId) {
  3934. CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCRequest();
  3935. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCRequestBody();
  3936. inValue.Body.selectFlag = selectFlag;
  3937. inValue.Body.toDt = toDt;
  3938. inValue.Body.fromDt = fromDt;
  3939. inValue.Body.baseCd = baseCd;
  3940. inValue.Body.supportDeptCd = supportDeptCd;
  3941. inValue.Body.pid = pid;
  3942. inValue.Body.patientState = patientState;
  3943. inValue.Body.isMainD = isMainD;
  3944. inValue.Body.mainDrId = mainDrId;
  3945. CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetPatientExListPC(inValue);
  3946. return retVal.Body.GetPatientExListPCResult;
  3947. }
  3948. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3949. CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetPatientExPCList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListRequest request) {
  3950. return base.Channel.GetPatientExPCList(request);
  3951. }
  3952. public CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientExPCList(string selectFlag, string toDt, string fromDt, string baseCd, string supportDeptCd, string pid, string patientState, string isMainD, string mainDrId) {
  3953. CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListRequest();
  3954. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListRequestBody();
  3955. inValue.Body.selectFlag = selectFlag;
  3956. inValue.Body.toDt = toDt;
  3957. inValue.Body.fromDt = fromDt;
  3958. inValue.Body.baseCd = baseCd;
  3959. inValue.Body.supportDeptCd = supportDeptCd;
  3960. inValue.Body.pid = pid;
  3961. inValue.Body.patientState = patientState;
  3962. inValue.Body.isMainD = isMainD;
  3963. inValue.Body.mainDrId = mainDrId;
  3964. CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetPatientExPCList(inValue);
  3965. return retVal.Body.GetPatientExPCListResult;
  3966. }
  3967. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3968. CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetDeptList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListRequest request) {
  3969. return base.Channel.GetDeptList(request);
  3970. }
  3971. public CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetDeptList(string ordType, string dutInstCd) {
  3972. CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListRequest();
  3973. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListRequestBody();
  3974. inValue.Body.ordType = ordType;
  3975. inValue.Body.dutInstCd = dutInstCd;
  3976. CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetDeptList(inValue);
  3977. return retVal.Body.GetDeptListResult;
  3978. }
  3979. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3980. CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetOrgDeptList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListRequest request) {
  3981. return base.Channel.GetOrgDeptList(request);
  3982. }
  3983. public CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetOrgDeptList(string ordType, string dutInstCd) {
  3984. CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListRequest();
  3985. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListRequestBody();
  3986. inValue.Body.ordType = ordType;
  3987. inValue.Body.dutInstCd = dutInstCd;
  3988. CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetOrgDeptList(inValue);
  3989. return retVal.Body.GetOrgDeptListResult;
  3990. }
  3991. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3992. CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetWardList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListRequest request) {
  3993. return base.Channel.GetWardList(request);
  3994. }
  3995. public CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetWardList(string dutInstCd) {
  3996. CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListRequest();
  3997. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListRequestBody();
  3998. inValue.Body.dutInstCd = dutInstCd;
  3999. CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetWardList(inValue);
  4000. return retVal.Body.GetWardListResult;
  4001. }
  4002. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  4003. CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetDoctorList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListRequest request) {
  4004. return base.Channel.GetDoctorList(request);
  4005. }
  4006. public CLIP.eForm.Consent.UI.HospitalSvcRef.DocListVO[] GetDoctorList(string srchDd, string ordDeptCd, string dutInstCd) {
  4007. CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListRequest();
  4008. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListRequestBody();
  4009. inValue.Body.srchDd = srchDd;
  4010. inValue.Body.ordDeptCd = ordDeptCd;
  4011. inValue.Body.dutInstCd = dutInstCd;
  4012. CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetDoctorList(inValue);
  4013. return retVal.Body.GetDoctorListResult;
  4014. }
  4015. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  4016. CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetSupportDeptList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListRequest request) {
  4017. return base.Channel.GetSupportDeptList(request);
  4018. }
  4019. public CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetSupportDeptList() {
  4020. CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListRequest();
  4021. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListRequestBody();
  4022. CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetSupportDeptList(inValue);
  4023. return retVal.Body.GetSupportDeptListResult;
  4024. }
  4025. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  4026. CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetInspectingRoomName(CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameRequest request) {
  4027. return base.Channel.GetInspectingRoomName(request);
  4028. }
  4029. public CLIP.eForm.Consent.UI.HospitalSvcRef.InspectionVO[] GetInspectingRoomName(string deptCd) {
  4030. CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameRequest();
  4031. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameRequestBody();
  4032. inValue.Body.deptCd = deptCd;
  4033. CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetInspectingRoomName(inValue);
  4034. return retVal.Body.GetInspectingRoomNameResult;
  4035. }
  4036. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  4037. CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetSrchPatInfo(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoRequest request) {
  4038. return base.Channel.GetSrchPatInfo(request);
  4039. }
  4040. public CLIP.eForm.Consent.UI.HospitalSvcRef.PatInfoListVO[] GetSrchPatInfo(string srchcond, string pid, string hngnm, string rrgstno1, string rrgstno2, string dutinstcd) {
  4041. CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoRequest();
  4042. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoRequestBody();
  4043. inValue.Body.srchcond = srchcond;
  4044. inValue.Body.pid = pid;
  4045. inValue.Body.hngnm = hngnm;
  4046. inValue.Body.rrgstno1 = rrgstno1;
  4047. inValue.Body.rrgstno2 = rrgstno2;
  4048. inValue.Body.dutinstcd = dutinstcd;
  4049. CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetSrchPatInfo(inValue);
  4050. return retVal.Body.GetSrchPatInfoResult;
  4051. }
  4052. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  4053. CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetPatientInfo(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoRequest request) {
  4054. return base.Channel.GetPatientInfo(request);
  4055. }
  4056. public CLIP.eForm.Consent.UI.HospitalSvcRef.PatientVO[] GetPatientInfo(string pid, string ordDd, string ordType, string ordDeptCd, string cretNo, string dutInstCd, string opRsrvNo) {
  4057. CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoRequest();
  4058. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoRequestBody();
  4059. inValue.Body.pid = pid;
  4060. inValue.Body.ordDd = ordDd;
  4061. inValue.Body.ordType = ordType;
  4062. inValue.Body.ordDeptCd = ordDeptCd;
  4063. inValue.Body.cretNo = cretNo;
  4064. inValue.Body.dutInstCd = dutInstCd;
  4065. inValue.Body.opRsrvNo = opRsrvNo;
  4066. CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetPatientInfo(inValue);
  4067. return retVal.Body.GetPatientInfoResult;
  4068. }
  4069. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  4070. CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.SetUserFormSetList(CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListRequest request) {
  4071. return base.Channel.SetUserFormSetList(request);
  4072. }
  4073. public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData SetUserFormSetList(string userId, string formCd, string dutInstCd, string toDay) {
  4074. CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListRequest();
  4075. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListRequestBody();
  4076. inValue.Body.userId = userId;
  4077. inValue.Body.formCd = formCd;
  4078. inValue.Body.dutInstCd = dutInstCd;
  4079. inValue.Body.toDay = toDay;
  4080. CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).SetUserFormSetList(inValue);
  4081. return retVal.Body.SetUserFormSetListResult;
  4082. }
  4083. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  4084. CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.DelUserFormSetList(CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListRequest request) {
  4085. return base.Channel.DelUserFormSetList(request);
  4086. }
  4087. public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData DelUserFormSetList(string idx, string userId, string formCd, string dutInstCd) {
  4088. CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListRequest();
  4089. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListRequestBody();
  4090. inValue.Body.idx = idx;
  4091. inValue.Body.userId = userId;
  4092. inValue.Body.formCd = formCd;
  4093. inValue.Body.dutInstCd = dutInstCd;
  4094. CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).DelUserFormSetList(inValue);
  4095. return retVal.Body.DelUserFormSetListResult;
  4096. }
  4097. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  4098. CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetOcrTag(CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagRequest request) {
  4099. return base.Channel.GetOcrTag(request);
  4100. }
  4101. public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData GetOcrTag() {
  4102. CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagRequest();
  4103. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagRequestBody();
  4104. CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetOcrTag(inValue);
  4105. return retVal.Body.GetOcrTagResult;
  4106. }
  4107. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  4108. CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetSignImage(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageRequest request) {
  4109. return base.Channel.GetSignImage(request);
  4110. }
  4111. public CLIP.eForm.Consent.UI.HospitalSvcRef.UserSignImageVO GetSignImage(string userId, string instCd) {
  4112. CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageRequest();
  4113. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageRequestBody();
  4114. inValue.Body.userId = userId;
  4115. inValue.Body.instCd = instCd;
  4116. CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetSignImage(inValue);
  4117. return retVal.Body.GetSignImageResult;
  4118. }
  4119. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  4120. CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetDiagNameList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListRequest request) {
  4121. return base.Channel.GetDiagNameList(request);
  4122. }
  4123. public CLIP.eForm.Consent.UI.HospitalSvcRef.ArrayOfString GetDiagNameList(string pid, string orddd, string dutinstcd) {
  4124. CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListRequest();
  4125. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListRequestBody();
  4126. inValue.Body.pid = pid;
  4127. inValue.Body.orddd = orddd;
  4128. inValue.Body.dutinstcd = dutinstcd;
  4129. CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetDiagNameList(inValue);
  4130. return retVal.Body.GetDiagNameListResult;
  4131. }
  4132. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  4133. CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetFileName(CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameRequest request) {
  4134. return base.Channel.GetFileName(request);
  4135. }
  4136. public string GetFileName(string pid, string ordtype, string orddd, string dschdd, string cretno, string filesize, string formcd, string pageno, string ocrtag, string userid, string orddeptcd, string dutinstcd) {
  4137. CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameRequest();
  4138. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameRequestBody();
  4139. inValue.Body.pid = pid;
  4140. inValue.Body.ordtype = ordtype;
  4141. inValue.Body.orddd = orddd;
  4142. inValue.Body.dschdd = dschdd;
  4143. inValue.Body.cretno = cretno;
  4144. inValue.Body.filesize = filesize;
  4145. inValue.Body.formcd = formcd;
  4146. inValue.Body.pageno = pageno;
  4147. inValue.Body.ocrtag = ocrtag;
  4148. inValue.Body.userid = userid;
  4149. inValue.Body.orddeptcd = orddeptcd;
  4150. inValue.Body.dutinstcd = dutinstcd;
  4151. CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetFileName(inValue);
  4152. return retVal.Body.GetFileNameResult;
  4153. }
  4154. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  4155. CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.delEformData(CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataRequest request) {
  4156. return base.Channel.delEformData(request);
  4157. }
  4158. public void delEformData(string pid, string ordtype, string orddd, string dschdd, string cretno, string formcd, string ocrtag, string userid, string username, string consentmstrid, string hostype, string orddeptcd, string dutinstcd) {
  4159. CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataRequest();
  4160. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataRequestBody();
  4161. inValue.Body.pid = pid;
  4162. inValue.Body.ordtype = ordtype;
  4163. inValue.Body.orddd = orddd;
  4164. inValue.Body.dschdd = dschdd;
  4165. inValue.Body.cretno = cretno;
  4166. inValue.Body.formcd = formcd;
  4167. inValue.Body.ocrtag = ocrtag;
  4168. inValue.Body.userid = userid;
  4169. inValue.Body.username = username;
  4170. inValue.Body.consentmstrid = consentmstrid;
  4171. inValue.Body.hostype = hostype;
  4172. inValue.Body.orddeptcd = orddeptcd;
  4173. inValue.Body.dutinstcd = dutinstcd;
  4174. CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).delEformData(inValue);
  4175. }
  4176. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  4177. CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.UpdateUserSetup(CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupRequest request) {
  4178. return base.Channel.UpdateUserSetup(request);
  4179. }
  4180. public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData UpdateUserSetup(string userId, string status, string instCd) {
  4181. CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupRequest();
  4182. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupRequestBody();
  4183. inValue.Body.userId = userId;
  4184. inValue.Body.status = status;
  4185. inValue.Body.instCd = instCd;
  4186. CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).UpdateUserSetup(inValue);
  4187. return retVal.Body.UpdateUserSetupResult;
  4188. }
  4189. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  4190. CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.doLogin(CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginRequest request) {
  4191. return base.Channel.doLogin(request);
  4192. }
  4193. public CLIP.eForm.Consent.UI.HospitalSvcRef.UserLoginDeptList[] doLogin(string userId, string sha256EncPw, string md5EncPw, string dutInstCd, string certSucc) {
  4194. CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginRequest();
  4195. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginRequestBody();
  4196. inValue.Body.userId = userId;
  4197. inValue.Body.sha256EncPw = sha256EncPw;
  4198. inValue.Body.md5EncPw = md5EncPw;
  4199. inValue.Body.dutInstCd = dutInstCd;
  4200. inValue.Body.certSucc = certSucc;
  4201. CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).doLogin(inValue);
  4202. return retVal.Body.doLoginResult;
  4203. }
  4204. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  4205. CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.userLoginOutLog(CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogRequest request) {
  4206. return base.Channel.userLoginOutLog(request);
  4207. }
  4208. public void userLoginOutLog(string userId, string loginStatus, string deviceType, string macAddress) {
  4209. CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogRequest();
  4210. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogRequestBody();
  4211. inValue.Body.userId = userId;
  4212. inValue.Body.loginStatus = loginStatus;
  4213. inValue.Body.deviceType = deviceType;
  4214. inValue.Body.macAddress = macAddress;
  4215. CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).userLoginOutLog(inValue);
  4216. }
  4217. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  4218. CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetMobileUserInfo(CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoRequest request) {
  4219. return base.Channel.GetMobileUserInfo(request);
  4220. }
  4221. public CLIP.eForm.Consent.UI.HospitalSvcRef.MobileUserInfo GetMobileUserInfo(string userid, string dutplceinstcd, string dutplcecd) {
  4222. CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoRequest();
  4223. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoRequestBody();
  4224. inValue.Body.userid = userid;
  4225. inValue.Body.dutplceinstcd = dutplceinstcd;
  4226. inValue.Body.dutplcecd = dutplcecd;
  4227. CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetMobileUserInfo(inValue);
  4228. return retVal.Body.GetMobileUserInfoResult;
  4229. }
  4230. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  4231. CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.getUserPrefMonitor(CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorRequest request) {
  4232. return base.Channel.getUserPrefMonitor(request);
  4233. }
  4234. public string getUserPrefMonitor(string userId, string instcd) {
  4235. CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorRequest();
  4236. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorRequestBody();
  4237. inValue.Body.userId = userId;
  4238. inValue.Body.instcd = instcd;
  4239. CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).getUserPrefMonitor(inValue);
  4240. return retVal.Body.getUserPrefMonitorResult;
  4241. }
  4242. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  4243. CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.SetSupportUserData(CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataRequest request) {
  4244. return base.Channel.SetSupportUserData(request);
  4245. }
  4246. public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData SetSupportUserData(string userId, string baseCd, string supportDeptCd, string supportDeptNm, string macAddress) {
  4247. CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataRequest();
  4248. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataRequestBody();
  4249. inValue.Body.userId = userId;
  4250. inValue.Body.baseCd = baseCd;
  4251. inValue.Body.supportDeptCd = supportDeptCd;
  4252. inValue.Body.supportDeptNm = supportDeptNm;
  4253. inValue.Body.macAddress = macAddress;
  4254. CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).SetSupportUserData(inValue);
  4255. return retVal.Body.SetSupportUserDataResult;
  4256. }
  4257. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  4258. CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.SetUserPrefMonitor(CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorRequest request) {
  4259. return base.Channel.SetUserPrefMonitor(request);
  4260. }
  4261. public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData SetUserPrefMonitor(string userId, string monitorNo) {
  4262. CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorRequest();
  4263. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorRequestBody();
  4264. inValue.Body.userId = userId;
  4265. inValue.Body.monitorNo = monitorNo;
  4266. CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).SetUserPrefMonitor(inValue);
  4267. return retVal.Body.SetUserPrefMonitorResult;
  4268. }
  4269. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  4270. CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.getSessionTime(CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeRequest request) {
  4271. return base.Channel.getSessionTime(request);
  4272. }
  4273. public string getSessionTime(string instcd) {
  4274. CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeRequest();
  4275. inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeRequestBody();
  4276. inValue.Body.instcd = instcd;
  4277. CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).getSessionTime(inValue);
  4278. return retVal.Body.getSessionTimeResult;
  4279. }
  4280. }
  4281. }