Reference.cs 222 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // 이 코드는 도구를 사용하여 생성되었습니다.
  4. // 런타임 버전:4.0.30319.42000
  5. //
  6. // 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면
  7. // 이러한 변경 내용이 손실됩니다.
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. namespace CLIP.eForm.Consent.UI.ConsentSvcRef {
  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.CollectionDataContractAttribute(Name="ArrayOfString", Namespace="http://tempuri.org/", ItemName="string")]
  16. [System.SerializableAttribute()]
  17. public class ArrayOfString : System.Collections.Generic.List<string> {
  18. }
  19. [System.Diagnostics.DebuggerStepThroughAttribute()]
  20. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  21. [System.Runtime.Serialization.DataContractAttribute(Name="CategoryForDropdownVO", Namespace="http://tempuri.org/")]
  22. [System.SerializableAttribute()]
  23. public partial class CategoryForDropdownVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
  24. [System.NonSerializedAttribute()]
  25. private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  26. private int categoryIdField;
  27. [System.Runtime.Serialization.OptionalFieldAttribute()]
  28. private string categoryCodeField;
  29. private int parentCategoryIdField;
  30. [System.Runtime.Serialization.OptionalFieldAttribute()]
  31. private string categoryNameField;
  32. [global::System.ComponentModel.BrowsableAttribute(false)]
  33. public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
  34. get {
  35. return this.extensionDataField;
  36. }
  37. set {
  38. this.extensionDataField = value;
  39. }
  40. }
  41. [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
  42. public int categoryId {
  43. get {
  44. return this.categoryIdField;
  45. }
  46. set {
  47. if ((this.categoryIdField.Equals(value) != true)) {
  48. this.categoryIdField = value;
  49. this.RaisePropertyChanged("categoryId");
  50. }
  51. }
  52. }
  53. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  54. public string categoryCode {
  55. get {
  56. return this.categoryCodeField;
  57. }
  58. set {
  59. if ((object.ReferenceEquals(this.categoryCodeField, value) != true)) {
  60. this.categoryCodeField = value;
  61. this.RaisePropertyChanged("categoryCode");
  62. }
  63. }
  64. }
  65. [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=2)]
  66. public int parentCategoryId {
  67. get {
  68. return this.parentCategoryIdField;
  69. }
  70. set {
  71. if ((this.parentCategoryIdField.Equals(value) != true)) {
  72. this.parentCategoryIdField = value;
  73. this.RaisePropertyChanged("parentCategoryId");
  74. }
  75. }
  76. }
  77. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  78. public string categoryName {
  79. get {
  80. return this.categoryNameField;
  81. }
  82. set {
  83. if ((object.ReferenceEquals(this.categoryNameField, value) != true)) {
  84. this.categoryNameField = value;
  85. this.RaisePropertyChanged("categoryName");
  86. }
  87. }
  88. }
  89. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  90. protected void RaisePropertyChanged(string propertyName) {
  91. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  92. if ((propertyChanged != null)) {
  93. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  94. }
  95. }
  96. }
  97. [System.Diagnostics.DebuggerStepThroughAttribute()]
  98. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  99. [System.Runtime.Serialization.DataContractAttribute(Name="ConsentVO", Namespace="http://tempuri.org/")]
  100. [System.SerializableAttribute()]
  101. public partial class ConsentVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
  102. [System.NonSerializedAttribute()]
  103. private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  104. private int idxField;
  105. private int formIdField;
  106. [System.Runtime.Serialization.OptionalFieldAttribute()]
  107. private string formCodeField;
  108. [System.Runtime.Serialization.OptionalFieldAttribute()]
  109. private string formNameField;
  110. [System.Runtime.Serialization.OptionalFieldAttribute()]
  111. private string formPrntNmField;
  112. private int printCntField;
  113. [System.Runtime.Serialization.OptionalFieldAttribute()]
  114. private string certPassField;
  115. [System.Runtime.Serialization.OptionalFieldAttribute()]
  116. private string pidField;
  117. [System.Runtime.Serialization.OptionalFieldAttribute()]
  118. private string deptEngNameField;
  119. [System.Runtime.Serialization.OptionalFieldAttribute()]
  120. private string consentStateField;
  121. private int consentMstRidField;
  122. [System.Runtime.Serialization.OptionalFieldAttribute()]
  123. private string ocrTagField;
  124. [System.Runtime.Serialization.OptionalFieldAttribute()]
  125. private string patientNameField;
  126. [System.Runtime.Serialization.OptionalFieldAttribute()]
  127. private string modifyUserIdField;
  128. [System.Runtime.Serialization.OptionalFieldAttribute()]
  129. private string modifyUserNmField;
  130. [System.Runtime.Serialization.OptionalFieldAttribute()]
  131. private string modifyDatetimeField;
  132. [System.Runtime.Serialization.OptionalFieldAttribute()]
  133. private string createDatetimeField;
  134. [System.Runtime.Serialization.OptionalFieldAttribute()]
  135. private string clnDateField;
  136. private int cretNoField;
  137. [System.Runtime.Serialization.OptionalFieldAttribute()]
  138. private string ordTypeField;
  139. [System.Runtime.Serialization.OptionalFieldAttribute()]
  140. private string deptCdField;
  141. [System.Runtime.Serialization.OptionalFieldAttribute()]
  142. private string mainDrIdField;
  143. [global::System.ComponentModel.BrowsableAttribute(false)]
  144. public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
  145. get {
  146. return this.extensionDataField;
  147. }
  148. set {
  149. this.extensionDataField = value;
  150. }
  151. }
  152. [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
  153. public int idx {
  154. get {
  155. return this.idxField;
  156. }
  157. set {
  158. if ((this.idxField.Equals(value) != true)) {
  159. this.idxField = value;
  160. this.RaisePropertyChanged("idx");
  161. }
  162. }
  163. }
  164. [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=1)]
  165. public int formId {
  166. get {
  167. return this.formIdField;
  168. }
  169. set {
  170. if ((this.formIdField.Equals(value) != true)) {
  171. this.formIdField = value;
  172. this.RaisePropertyChanged("formId");
  173. }
  174. }
  175. }
  176. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  177. public string formCode {
  178. get {
  179. return this.formCodeField;
  180. }
  181. set {
  182. if ((object.ReferenceEquals(this.formCodeField, value) != true)) {
  183. this.formCodeField = value;
  184. this.RaisePropertyChanged("formCode");
  185. }
  186. }
  187. }
  188. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  189. public string formName {
  190. get {
  191. return this.formNameField;
  192. }
  193. set {
  194. if ((object.ReferenceEquals(this.formNameField, value) != true)) {
  195. this.formNameField = value;
  196. this.RaisePropertyChanged("formName");
  197. }
  198. }
  199. }
  200. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  201. public string formPrntNm {
  202. get {
  203. return this.formPrntNmField;
  204. }
  205. set {
  206. if ((object.ReferenceEquals(this.formPrntNmField, value) != true)) {
  207. this.formPrntNmField = value;
  208. this.RaisePropertyChanged("formPrntNm");
  209. }
  210. }
  211. }
  212. [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=5)]
  213. public int printCnt {
  214. get {
  215. return this.printCntField;
  216. }
  217. set {
  218. if ((this.printCntField.Equals(value) != true)) {
  219. this.printCntField = value;
  220. this.RaisePropertyChanged("printCnt");
  221. }
  222. }
  223. }
  224. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
  225. public string certPass {
  226. get {
  227. return this.certPassField;
  228. }
  229. set {
  230. if ((object.ReferenceEquals(this.certPassField, value) != true)) {
  231. this.certPassField = value;
  232. this.RaisePropertyChanged("certPass");
  233. }
  234. }
  235. }
  236. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
  237. public string pid {
  238. get {
  239. return this.pidField;
  240. }
  241. set {
  242. if ((object.ReferenceEquals(this.pidField, value) != true)) {
  243. this.pidField = value;
  244. this.RaisePropertyChanged("pid");
  245. }
  246. }
  247. }
  248. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
  249. public string deptEngName {
  250. get {
  251. return this.deptEngNameField;
  252. }
  253. set {
  254. if ((object.ReferenceEquals(this.deptEngNameField, value) != true)) {
  255. this.deptEngNameField = value;
  256. this.RaisePropertyChanged("deptEngName");
  257. }
  258. }
  259. }
  260. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
  261. public string consentState {
  262. get {
  263. return this.consentStateField;
  264. }
  265. set {
  266. if ((object.ReferenceEquals(this.consentStateField, value) != true)) {
  267. this.consentStateField = value;
  268. this.RaisePropertyChanged("consentState");
  269. }
  270. }
  271. }
  272. [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=10)]
  273. public int consentMstRid {
  274. get {
  275. return this.consentMstRidField;
  276. }
  277. set {
  278. if ((this.consentMstRidField.Equals(value) != true)) {
  279. this.consentMstRidField = value;
  280. this.RaisePropertyChanged("consentMstRid");
  281. }
  282. }
  283. }
  284. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
  285. public string ocrTag {
  286. get {
  287. return this.ocrTagField;
  288. }
  289. set {
  290. if ((object.ReferenceEquals(this.ocrTagField, value) != true)) {
  291. this.ocrTagField = value;
  292. this.RaisePropertyChanged("ocrTag");
  293. }
  294. }
  295. }
  296. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
  297. public string patientName {
  298. get {
  299. return this.patientNameField;
  300. }
  301. set {
  302. if ((object.ReferenceEquals(this.patientNameField, value) != true)) {
  303. this.patientNameField = value;
  304. this.RaisePropertyChanged("patientName");
  305. }
  306. }
  307. }
  308. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
  309. public string modifyUserId {
  310. get {
  311. return this.modifyUserIdField;
  312. }
  313. set {
  314. if ((object.ReferenceEquals(this.modifyUserIdField, value) != true)) {
  315. this.modifyUserIdField = value;
  316. this.RaisePropertyChanged("modifyUserId");
  317. }
  318. }
  319. }
  320. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
  321. public string modifyUserNm {
  322. get {
  323. return this.modifyUserNmField;
  324. }
  325. set {
  326. if ((object.ReferenceEquals(this.modifyUserNmField, value) != true)) {
  327. this.modifyUserNmField = value;
  328. this.RaisePropertyChanged("modifyUserNm");
  329. }
  330. }
  331. }
  332. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
  333. public string modifyDatetime {
  334. get {
  335. return this.modifyDatetimeField;
  336. }
  337. set {
  338. if ((object.ReferenceEquals(this.modifyDatetimeField, value) != true)) {
  339. this.modifyDatetimeField = value;
  340. this.RaisePropertyChanged("modifyDatetime");
  341. }
  342. }
  343. }
  344. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=16)]
  345. public string createDatetime {
  346. get {
  347. return this.createDatetimeField;
  348. }
  349. set {
  350. if ((object.ReferenceEquals(this.createDatetimeField, value) != true)) {
  351. this.createDatetimeField = value;
  352. this.RaisePropertyChanged("createDatetime");
  353. }
  354. }
  355. }
  356. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=17)]
  357. public string clnDate {
  358. get {
  359. return this.clnDateField;
  360. }
  361. set {
  362. if ((object.ReferenceEquals(this.clnDateField, value) != true)) {
  363. this.clnDateField = value;
  364. this.RaisePropertyChanged("clnDate");
  365. }
  366. }
  367. }
  368. [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=18)]
  369. public int cretNo {
  370. get {
  371. return this.cretNoField;
  372. }
  373. set {
  374. if ((this.cretNoField.Equals(value) != true)) {
  375. this.cretNoField = value;
  376. this.RaisePropertyChanged("cretNo");
  377. }
  378. }
  379. }
  380. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=19)]
  381. public string ordType {
  382. get {
  383. return this.ordTypeField;
  384. }
  385. set {
  386. if ((object.ReferenceEquals(this.ordTypeField, value) != true)) {
  387. this.ordTypeField = value;
  388. this.RaisePropertyChanged("ordType");
  389. }
  390. }
  391. }
  392. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=20)]
  393. public string deptCd {
  394. get {
  395. return this.deptCdField;
  396. }
  397. set {
  398. if ((object.ReferenceEquals(this.deptCdField, value) != true)) {
  399. this.deptCdField = value;
  400. this.RaisePropertyChanged("deptCd");
  401. }
  402. }
  403. }
  404. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=21)]
  405. public string mainDrId {
  406. get {
  407. return this.mainDrIdField;
  408. }
  409. set {
  410. if ((object.ReferenceEquals(this.mainDrIdField, value) != true)) {
  411. this.mainDrIdField = value;
  412. this.RaisePropertyChanged("mainDrId");
  413. }
  414. }
  415. }
  416. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  417. protected void RaisePropertyChanged(string propertyName) {
  418. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  419. if ((propertyChanged != null)) {
  420. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  421. }
  422. }
  423. }
  424. [System.Diagnostics.DebuggerStepThroughAttribute()]
  425. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  426. [System.Runtime.Serialization.DataContractAttribute(Name="SingleReturnData", Namespace="http://tempuri.org/")]
  427. [System.SerializableAttribute()]
  428. public partial class SingleReturnData : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
  429. [System.NonSerializedAttribute()]
  430. private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  431. [System.Runtime.Serialization.OptionalFieldAttribute()]
  432. private string responseDataField;
  433. [global::System.ComponentModel.BrowsableAttribute(false)]
  434. public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
  435. get {
  436. return this.extensionDataField;
  437. }
  438. set {
  439. this.extensionDataField = value;
  440. }
  441. }
  442. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  443. public string responseData {
  444. get {
  445. return this.responseDataField;
  446. }
  447. set {
  448. if ((object.ReferenceEquals(this.responseDataField, value) != true)) {
  449. this.responseDataField = value;
  450. this.RaisePropertyChanged("responseData");
  451. }
  452. }
  453. }
  454. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  455. protected void RaisePropertyChanged(string propertyName) {
  456. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  457. if ((propertyChanged != null)) {
  458. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  459. }
  460. }
  461. }
  462. [System.Diagnostics.DebuggerStepThroughAttribute()]
  463. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  464. [System.Runtime.Serialization.DataContractAttribute(Name="ConsentImageVO", Namespace="http://tempuri.org/")]
  465. [System.SerializableAttribute()]
  466. public partial class ConsentImageVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
  467. [System.NonSerializedAttribute()]
  468. private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  469. private int consentMstRidField;
  470. private int consentImageRidField;
  471. private int formRidField;
  472. [System.Runtime.Serialization.OptionalFieldAttribute()]
  473. private string imagePathField;
  474. [System.Runtime.Serialization.OptionalFieldAttribute()]
  475. private string imageFilenameField;
  476. [System.Runtime.Serialization.OptionalFieldAttribute()]
  477. private string completeYnField;
  478. [System.Runtime.Serialization.OptionalFieldAttribute()]
  479. private string createUserIdField;
  480. [System.Runtime.Serialization.OptionalFieldAttribute()]
  481. private string createDatetimeField;
  482. [global::System.ComponentModel.BrowsableAttribute(false)]
  483. public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
  484. get {
  485. return this.extensionDataField;
  486. }
  487. set {
  488. this.extensionDataField = value;
  489. }
  490. }
  491. [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
  492. public int consentMstRid {
  493. get {
  494. return this.consentMstRidField;
  495. }
  496. set {
  497. if ((this.consentMstRidField.Equals(value) != true)) {
  498. this.consentMstRidField = value;
  499. this.RaisePropertyChanged("consentMstRid");
  500. }
  501. }
  502. }
  503. [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=1)]
  504. public int consentImageRid {
  505. get {
  506. return this.consentImageRidField;
  507. }
  508. set {
  509. if ((this.consentImageRidField.Equals(value) != true)) {
  510. this.consentImageRidField = value;
  511. this.RaisePropertyChanged("consentImageRid");
  512. }
  513. }
  514. }
  515. [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=2)]
  516. public int formRid {
  517. get {
  518. return this.formRidField;
  519. }
  520. set {
  521. if ((this.formRidField.Equals(value) != true)) {
  522. this.formRidField = value;
  523. this.RaisePropertyChanged("formRid");
  524. }
  525. }
  526. }
  527. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  528. public string imagePath {
  529. get {
  530. return this.imagePathField;
  531. }
  532. set {
  533. if ((object.ReferenceEquals(this.imagePathField, value) != true)) {
  534. this.imagePathField = value;
  535. this.RaisePropertyChanged("imagePath");
  536. }
  537. }
  538. }
  539. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  540. public string imageFilename {
  541. get {
  542. return this.imageFilenameField;
  543. }
  544. set {
  545. if ((object.ReferenceEquals(this.imageFilenameField, value) != true)) {
  546. this.imageFilenameField = value;
  547. this.RaisePropertyChanged("imageFilename");
  548. }
  549. }
  550. }
  551. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  552. public string completeYn {
  553. get {
  554. return this.completeYnField;
  555. }
  556. set {
  557. if ((object.ReferenceEquals(this.completeYnField, value) != true)) {
  558. this.completeYnField = value;
  559. this.RaisePropertyChanged("completeYn");
  560. }
  561. }
  562. }
  563. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
  564. public string createUserId {
  565. get {
  566. return this.createUserIdField;
  567. }
  568. set {
  569. if ((object.ReferenceEquals(this.createUserIdField, value) != true)) {
  570. this.createUserIdField = value;
  571. this.RaisePropertyChanged("createUserId");
  572. }
  573. }
  574. }
  575. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
  576. public string createDatetime {
  577. get {
  578. return this.createDatetimeField;
  579. }
  580. set {
  581. if ((object.ReferenceEquals(this.createDatetimeField, value) != true)) {
  582. this.createDatetimeField = value;
  583. this.RaisePropertyChanged("createDatetime");
  584. }
  585. }
  586. }
  587. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  588. protected void RaisePropertyChanged(string propertyName) {
  589. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  590. if ((propertyChanged != null)) {
  591. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  592. }
  593. }
  594. }
  595. [System.Diagnostics.DebuggerStepThroughAttribute()]
  596. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  597. [System.Runtime.Serialization.DataContractAttribute(Name="ImrData", Namespace="http://tempuri.org/")]
  598. [System.SerializableAttribute()]
  599. public partial class ImrData : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
  600. [System.NonSerializedAttribute()]
  601. private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  602. [System.Runtime.Serialization.OptionalFieldAttribute()]
  603. private string fileNameField;
  604. [System.Runtime.Serialization.OptionalFieldAttribute()]
  605. private string inputDateField;
  606. [System.Runtime.Serialization.OptionalFieldAttribute()]
  607. private string userIdField;
  608. [global::System.ComponentModel.BrowsableAttribute(false)]
  609. public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
  610. get {
  611. return this.extensionDataField;
  612. }
  613. set {
  614. this.extensionDataField = value;
  615. }
  616. }
  617. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  618. public string fileName {
  619. get {
  620. return this.fileNameField;
  621. }
  622. set {
  623. if ((object.ReferenceEquals(this.fileNameField, value) != true)) {
  624. this.fileNameField = value;
  625. this.RaisePropertyChanged("fileName");
  626. }
  627. }
  628. }
  629. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  630. public string inputDate {
  631. get {
  632. return this.inputDateField;
  633. }
  634. set {
  635. if ((object.ReferenceEquals(this.inputDateField, value) != true)) {
  636. this.inputDateField = value;
  637. this.RaisePropertyChanged("inputDate");
  638. }
  639. }
  640. }
  641. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
  642. public string userId {
  643. get {
  644. return this.userIdField;
  645. }
  646. set {
  647. if ((object.ReferenceEquals(this.userIdField, value) != true)) {
  648. this.userIdField = value;
  649. this.RaisePropertyChanged("userId");
  650. }
  651. }
  652. }
  653. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  654. protected void RaisePropertyChanged(string propertyName) {
  655. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  656. if ((propertyChanged != null)) {
  657. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  658. }
  659. }
  660. }
  661. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  662. [System.ServiceModel.ServiceContractAttribute(ConfigurationName="ConsentSvcRef.ConsentSvcSoap")]
  663. public interface ConsentSvcSoap {
  664. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/CheckWebService", ReplyAction="*")]
  665. bool CheckWebService();
  666. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 dutinstcd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  667. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getOcrType6Forms", ReplyAction="*")]
  668. CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsResponse getOcrType6Forms(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsRequest request);
  669. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/CheckDatabaseConnection", ReplyAction="*")]
  670. bool CheckDatabaseConnection();
  671. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 GetCategoryForDropdownResult이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  672. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetCategoryForDropdown", ReplyAction="*")]
  673. CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownResponse GetCategoryForDropdown(CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownRequest request);
  674. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 pid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  675. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentList", ReplyAction="*")]
  676. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListResponse GetConsentList(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListRequest request);
  677. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 srchDd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  678. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentDateList", ReplyAction="*")]
  679. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListResponse GetConsentDateList(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListRequest request);
  680. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 pid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  681. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetPrescriptionConsentList", ReplyAction="*")]
  682. CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListResponse GetPrescriptionConsentList(CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListRequest request);
  683. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 categoryId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  684. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentBySearch", ReplyAction="*")]
  685. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchResponse GetConsentBySearch(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchRequest request);
  686. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  687. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentSetList", ReplyAction="*")]
  688. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListResponse GetConsentSetList(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListRequest request);
  689. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 formCd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  690. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentByFormcd", ReplyAction="*")]
  691. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdResponse GetConsentByFormcd(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdRequest request);
  692. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 pid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  693. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ReUseCertifyConsentFlag", ReplyAction="*")]
  694. CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagResponse ReUseCertifyConsentFlag(CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagRequest request);
  695. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 instcd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  696. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getSaveAllFlag", ReplyAction="*")]
  697. CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagResponse getSaveAllFlag(CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagRequest request);
  698. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 consentMstRid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  699. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentImage", ReplyAction="*")]
  700. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageResponse GetConsentImage(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageRequest request);
  701. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 consentMstRid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  702. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentAudioCount", ReplyAction="*")]
  703. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountResponse GetConsentAudioCount(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountRequest request);
  704. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 consentMstRid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  705. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentAudio", ReplyAction="*")]
  706. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioResponse GetConsentAudio(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioRequest request);
  707. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  708. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/saveDelete", ReplyAction="*")]
  709. CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteResponse saveDelete(CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteRequest request);
  710. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  711. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SaveTempData", ReplyAction="*")]
  712. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataResponse SaveTempData(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataRequest request);
  713. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  714. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SaveAutoCompleteAll", ReplyAction="*")]
  715. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllResponse SaveAutoCompleteAll(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllRequest request);
  716. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 imrTestResult이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  717. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/imrTest", ReplyAction="*")]
  718. CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestResponse imrTest(CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestRequest request);
  719. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  720. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SaveCompleteAll", ReplyAction="*")]
  721. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllResponse SaveCompleteAll(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllRequest request);
  722. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 GetConsentFormXmlResult이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  723. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentFormXml", ReplyAction="*")]
  724. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlResponse GetConsentFormXml(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlRequest request);
  725. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  726. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SavePrintOut", ReplyAction="*")]
  727. CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutResponse SavePrintOut(CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutRequest request);
  728. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 patientCode이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  729. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SaveMedicalHistory", ReplyAction="*")]
  730. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryResponse SaveMedicalHistory(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryRequest request);
  731. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 consentState이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  732. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SaveImageUploadInfo", ReplyAction="*")]
  733. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoResponse SaveImageUploadInfo(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoRequest request);
  734. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 consentState이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  735. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SaveImageSignInfo", ReplyAction="*")]
  736. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoResponse SaveImageSignInfo(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoRequest request);
  737. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 consent_state이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  738. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/CheckConsentState", ReplyAction="*")]
  739. CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateResponse CheckConsentState(CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateRequest request);
  740. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 formCd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  741. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getOcrString", ReplyAction="*")]
  742. CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringResponse getOcrString(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringRequest request);
  743. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 formCd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  744. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getCertUseYn", ReplyAction="*")]
  745. CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnResponse getCertUseYn(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnRequest request);
  746. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 formCd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  747. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getCertUseYnData", ReplyAction="*")]
  748. CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataResponse getCertUseYnData(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataRequest request);
  749. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 dutinstcd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  750. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getDualViewMode", ReplyAction="*")]
  751. CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeResponse getDualViewMode(CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeRequest request);
  752. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 consent_rids이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  753. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/updateCertifyComplete", ReplyAction="*")]
  754. CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteResponse updateCertifyComplete(CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteRequest request);
  755. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 pid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  756. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/updatePrintHistory", ReplyAction="*")]
  757. CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryResponse updatePrintHistory(CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryRequest request);
  758. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 pid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  759. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/duplicateCertConsent", ReplyAction="*")]
  760. CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentResponse duplicateCertConsent(CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentRequest request);
  761. // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 getUserTableGrantsResult이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
  762. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getUserTableGrants", ReplyAction="*")]
  763. CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsResponse getUserTableGrants(CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsRequest request);
  764. }
  765. [System.Diagnostics.DebuggerStepThroughAttribute()]
  766. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  767. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  768. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  769. public partial class getOcrType6FormsRequest {
  770. [System.ServiceModel.MessageBodyMemberAttribute(Name="getOcrType6Forms", Namespace="http://tempuri.org/", Order=0)]
  771. public CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsRequestBody Body;
  772. public getOcrType6FormsRequest() {
  773. }
  774. public getOcrType6FormsRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsRequestBody Body) {
  775. this.Body = Body;
  776. }
  777. }
  778. [System.Diagnostics.DebuggerStepThroughAttribute()]
  779. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  780. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  781. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  782. public partial class getOcrType6FormsRequestBody {
  783. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  784. public string dutinstcd;
  785. public getOcrType6FormsRequestBody() {
  786. }
  787. public getOcrType6FormsRequestBody(string dutinstcd) {
  788. this.dutinstcd = dutinstcd;
  789. }
  790. }
  791. [System.Diagnostics.DebuggerStepThroughAttribute()]
  792. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  793. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  794. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  795. public partial class getOcrType6FormsResponse {
  796. [System.ServiceModel.MessageBodyMemberAttribute(Name="getOcrType6FormsResponse", Namespace="http://tempuri.org/", Order=0)]
  797. public CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsResponseBody Body;
  798. public getOcrType6FormsResponse() {
  799. }
  800. public getOcrType6FormsResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsResponseBody Body) {
  801. this.Body = Body;
  802. }
  803. }
  804. [System.Diagnostics.DebuggerStepThroughAttribute()]
  805. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  806. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  807. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  808. public partial class getOcrType6FormsResponseBody {
  809. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  810. public CLIP.eForm.Consent.UI.ConsentSvcRef.ArrayOfString getOcrType6FormsResult;
  811. public getOcrType6FormsResponseBody() {
  812. }
  813. public getOcrType6FormsResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ArrayOfString getOcrType6FormsResult) {
  814. this.getOcrType6FormsResult = getOcrType6FormsResult;
  815. }
  816. }
  817. [System.Diagnostics.DebuggerStepThroughAttribute()]
  818. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  819. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  820. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  821. public partial class GetCategoryForDropdownRequest {
  822. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetCategoryForDropdown", Namespace="http://tempuri.org/", Order=0)]
  823. public CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownRequestBody Body;
  824. public GetCategoryForDropdownRequest() {
  825. }
  826. public GetCategoryForDropdownRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownRequestBody Body) {
  827. this.Body = Body;
  828. }
  829. }
  830. [System.Diagnostics.DebuggerStepThroughAttribute()]
  831. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  832. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  833. [System.Runtime.Serialization.DataContractAttribute()]
  834. public partial class GetCategoryForDropdownRequestBody {
  835. public GetCategoryForDropdownRequestBody() {
  836. }
  837. }
  838. [System.Diagnostics.DebuggerStepThroughAttribute()]
  839. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  840. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  841. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  842. public partial class GetCategoryForDropdownResponse {
  843. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetCategoryForDropdownResponse", Namespace="http://tempuri.org/", Order=0)]
  844. public CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownResponseBody Body;
  845. public GetCategoryForDropdownResponse() {
  846. }
  847. public GetCategoryForDropdownResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownResponseBody Body) {
  848. this.Body = Body;
  849. }
  850. }
  851. [System.Diagnostics.DebuggerStepThroughAttribute()]
  852. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  853. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  854. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  855. public partial class GetCategoryForDropdownResponseBody {
  856. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  857. public CLIP.eForm.Consent.UI.ConsentSvcRef.CategoryForDropdownVO[] GetCategoryForDropdownResult;
  858. public GetCategoryForDropdownResponseBody() {
  859. }
  860. public GetCategoryForDropdownResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.CategoryForDropdownVO[] GetCategoryForDropdownResult) {
  861. this.GetCategoryForDropdownResult = GetCategoryForDropdownResult;
  862. }
  863. }
  864. [System.Diagnostics.DebuggerStepThroughAttribute()]
  865. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  866. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  867. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  868. public partial class GetConsentListRequest {
  869. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentList", Namespace="http://tempuri.org/", Order=0)]
  870. public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListRequestBody Body;
  871. public GetConsentListRequest() {
  872. }
  873. public GetConsentListRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListRequestBody Body) {
  874. this.Body = Body;
  875. }
  876. }
  877. [System.Diagnostics.DebuggerStepThroughAttribute()]
  878. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  879. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  880. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  881. public partial class GetConsentListRequestBody {
  882. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  883. public string pid;
  884. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  885. public string userId;
  886. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  887. public string startDt;
  888. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  889. public string endDt;
  890. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  891. public string consentState;
  892. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  893. public string instCd;
  894. public GetConsentListRequestBody() {
  895. }
  896. public GetConsentListRequestBody(string pid, string userId, string startDt, string endDt, string consentState, string instCd) {
  897. this.pid = pid;
  898. this.userId = userId;
  899. this.startDt = startDt;
  900. this.endDt = endDt;
  901. this.consentState = consentState;
  902. this.instCd = instCd;
  903. }
  904. }
  905. [System.Diagnostics.DebuggerStepThroughAttribute()]
  906. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  907. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  908. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  909. public partial class GetConsentListResponse {
  910. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentListResponse", Namespace="http://tempuri.org/", Order=0)]
  911. public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListResponseBody Body;
  912. public GetConsentListResponse() {
  913. }
  914. public GetConsentListResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListResponseBody Body) {
  915. this.Body = Body;
  916. }
  917. }
  918. [System.Diagnostics.DebuggerStepThroughAttribute()]
  919. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  920. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  921. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  922. public partial class GetConsentListResponseBody {
  923. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  924. public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentListResult;
  925. public GetConsentListResponseBody() {
  926. }
  927. public GetConsentListResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentListResult) {
  928. this.GetConsentListResult = GetConsentListResult;
  929. }
  930. }
  931. [System.Diagnostics.DebuggerStepThroughAttribute()]
  932. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  933. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  934. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  935. public partial class GetConsentDateListRequest {
  936. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentDateList", Namespace="http://tempuri.org/", Order=0)]
  937. public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListRequestBody Body;
  938. public GetConsentDateListRequest() {
  939. }
  940. public GetConsentDateListRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListRequestBody Body) {
  941. this.Body = Body;
  942. }
  943. }
  944. [System.Diagnostics.DebuggerStepThroughAttribute()]
  945. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  946. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  947. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  948. public partial class GetConsentDateListRequestBody {
  949. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  950. public string srchDd;
  951. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  952. public string pid;
  953. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  954. public string userId;
  955. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  956. public string startDt;
  957. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  958. public string endDt;
  959. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  960. public string consentState;
  961. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
  962. public string instCd;
  963. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
  964. public string doctorId;
  965. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
  966. public string ordDeptCd;
  967. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
  968. public string patientState;
  969. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
  970. public string ordType;
  971. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
  972. public string myPatient;
  973. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
  974. public string wardCd;
  975. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
  976. public string drKind;
  977. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
  978. public string srchYN;
  979. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
  980. public string toDd;
  981. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=16)]
  982. public string mainDr;
  983. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=17)]
  984. public string mainDrChecked;
  985. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=18)]
  986. public string supportBaseCd;
  987. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=19)]
  988. public string supportDeptCd;
  989. public GetConsentDateListRequestBody() {
  990. }
  991. public GetConsentDateListRequestBody(
  992. string srchDd,
  993. string pid,
  994. string userId,
  995. string startDt,
  996. string endDt,
  997. string consentState,
  998. string instCd,
  999. string doctorId,
  1000. string ordDeptCd,
  1001. string patientState,
  1002. string ordType,
  1003. string myPatient,
  1004. string wardCd,
  1005. string drKind,
  1006. string srchYN,
  1007. string toDd,
  1008. string mainDr,
  1009. string mainDrChecked,
  1010. string supportBaseCd,
  1011. string supportDeptCd) {
  1012. this.srchDd = srchDd;
  1013. this.pid = pid;
  1014. this.userId = userId;
  1015. this.startDt = startDt;
  1016. this.endDt = endDt;
  1017. this.consentState = consentState;
  1018. this.instCd = instCd;
  1019. this.doctorId = doctorId;
  1020. this.ordDeptCd = ordDeptCd;
  1021. this.patientState = patientState;
  1022. this.ordType = ordType;
  1023. this.myPatient = myPatient;
  1024. this.wardCd = wardCd;
  1025. this.drKind = drKind;
  1026. this.srchYN = srchYN;
  1027. this.toDd = toDd;
  1028. this.mainDr = mainDr;
  1029. this.mainDrChecked = mainDrChecked;
  1030. this.supportBaseCd = supportBaseCd;
  1031. this.supportDeptCd = supportDeptCd;
  1032. }
  1033. }
  1034. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1035. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1036. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1037. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1038. public partial class GetConsentDateListResponse {
  1039. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentDateListResponse", Namespace="http://tempuri.org/", Order=0)]
  1040. public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListResponseBody Body;
  1041. public GetConsentDateListResponse() {
  1042. }
  1043. public GetConsentDateListResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListResponseBody Body) {
  1044. this.Body = Body;
  1045. }
  1046. }
  1047. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1048. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1049. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1050. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1051. public partial class GetConsentDateListResponseBody {
  1052. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1053. public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentDateListResult;
  1054. public GetConsentDateListResponseBody() {
  1055. }
  1056. public GetConsentDateListResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentDateListResult) {
  1057. this.GetConsentDateListResult = GetConsentDateListResult;
  1058. }
  1059. }
  1060. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1061. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1062. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1063. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1064. public partial class GetPrescriptionConsentListRequest {
  1065. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPrescriptionConsentList", Namespace="http://tempuri.org/", Order=0)]
  1066. public CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListRequestBody Body;
  1067. public GetPrescriptionConsentListRequest() {
  1068. }
  1069. public GetPrescriptionConsentListRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListRequestBody Body) {
  1070. this.Body = Body;
  1071. }
  1072. }
  1073. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1074. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1075. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1076. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1077. public partial class GetPrescriptionConsentListRequestBody {
  1078. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1079. public string pid;
  1080. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  1081. public string ordDd;
  1082. public GetPrescriptionConsentListRequestBody() {
  1083. }
  1084. public GetPrescriptionConsentListRequestBody(string pid, string ordDd) {
  1085. this.pid = pid;
  1086. this.ordDd = ordDd;
  1087. }
  1088. }
  1089. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1090. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1091. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1092. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1093. public partial class GetPrescriptionConsentListResponse {
  1094. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPrescriptionConsentListResponse", Namespace="http://tempuri.org/", Order=0)]
  1095. public CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListResponseBody Body;
  1096. public GetPrescriptionConsentListResponse() {
  1097. }
  1098. public GetPrescriptionConsentListResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListResponseBody Body) {
  1099. this.Body = Body;
  1100. }
  1101. }
  1102. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1103. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1104. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1105. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1106. public partial class GetPrescriptionConsentListResponseBody {
  1107. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1108. public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetPrescriptionConsentListResult;
  1109. public GetPrescriptionConsentListResponseBody() {
  1110. }
  1111. public GetPrescriptionConsentListResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetPrescriptionConsentListResult) {
  1112. this.GetPrescriptionConsentListResult = GetPrescriptionConsentListResult;
  1113. }
  1114. }
  1115. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1116. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1117. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1118. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1119. public partial class GetConsentBySearchRequest {
  1120. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentBySearch", Namespace="http://tempuri.org/", Order=0)]
  1121. public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchRequestBody Body;
  1122. public GetConsentBySearchRequest() {
  1123. }
  1124. public GetConsentBySearchRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchRequestBody Body) {
  1125. this.Body = Body;
  1126. }
  1127. }
  1128. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1129. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1130. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1131. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1132. public partial class GetConsentBySearchRequestBody {
  1133. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1134. public string categoryId;
  1135. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  1136. public string keyWord;
  1137. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  1138. public string instCd;
  1139. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  1140. public string toDay;
  1141. public GetConsentBySearchRequestBody() {
  1142. }
  1143. public GetConsentBySearchRequestBody(string categoryId, string keyWord, string instCd, string toDay) {
  1144. this.categoryId = categoryId;
  1145. this.keyWord = keyWord;
  1146. this.instCd = instCd;
  1147. this.toDay = toDay;
  1148. }
  1149. }
  1150. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1151. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1152. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1153. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1154. public partial class GetConsentBySearchResponse {
  1155. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentBySearchResponse", Namespace="http://tempuri.org/", Order=0)]
  1156. public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchResponseBody Body;
  1157. public GetConsentBySearchResponse() {
  1158. }
  1159. public GetConsentBySearchResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchResponseBody Body) {
  1160. this.Body = Body;
  1161. }
  1162. }
  1163. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1164. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1165. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1166. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1167. public partial class GetConsentBySearchResponseBody {
  1168. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1169. public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentBySearchResult;
  1170. public GetConsentBySearchResponseBody() {
  1171. }
  1172. public GetConsentBySearchResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentBySearchResult) {
  1173. this.GetConsentBySearchResult = GetConsentBySearchResult;
  1174. }
  1175. }
  1176. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1177. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1178. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1179. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1180. public partial class GetConsentSetListRequest {
  1181. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentSetList", Namespace="http://tempuri.org/", Order=0)]
  1182. public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListRequestBody Body;
  1183. public GetConsentSetListRequest() {
  1184. }
  1185. public GetConsentSetListRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListRequestBody Body) {
  1186. this.Body = Body;
  1187. }
  1188. }
  1189. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1190. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1191. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1192. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1193. public partial class GetConsentSetListRequestBody {
  1194. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1195. public string userId;
  1196. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  1197. public string instCd;
  1198. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  1199. public string toDay;
  1200. public GetConsentSetListRequestBody() {
  1201. }
  1202. public GetConsentSetListRequestBody(string userId, string instCd, string toDay) {
  1203. this.userId = userId;
  1204. this.instCd = instCd;
  1205. this.toDay = toDay;
  1206. }
  1207. }
  1208. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1209. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1210. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1211. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1212. public partial class GetConsentSetListResponse {
  1213. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentSetListResponse", Namespace="http://tempuri.org/", Order=0)]
  1214. public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListResponseBody Body;
  1215. public GetConsentSetListResponse() {
  1216. }
  1217. public GetConsentSetListResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListResponseBody Body) {
  1218. this.Body = Body;
  1219. }
  1220. }
  1221. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1222. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1223. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1224. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1225. public partial class GetConsentSetListResponseBody {
  1226. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1227. public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentSetListResult;
  1228. public GetConsentSetListResponseBody() {
  1229. }
  1230. public GetConsentSetListResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentSetListResult) {
  1231. this.GetConsentSetListResult = GetConsentSetListResult;
  1232. }
  1233. }
  1234. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1235. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1236. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1237. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1238. public partial class GetConsentByFormcdRequest {
  1239. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentByFormcd", Namespace="http://tempuri.org/", Order=0)]
  1240. public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdRequestBody Body;
  1241. public GetConsentByFormcdRequest() {
  1242. }
  1243. public GetConsentByFormcdRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdRequestBody Body) {
  1244. this.Body = Body;
  1245. }
  1246. }
  1247. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1248. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1249. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1250. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1251. public partial class GetConsentByFormcdRequestBody {
  1252. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1253. public string formCd;
  1254. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  1255. public string instCd;
  1256. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  1257. public string today;
  1258. public GetConsentByFormcdRequestBody() {
  1259. }
  1260. public GetConsentByFormcdRequestBody(string formCd, string instCd, string today) {
  1261. this.formCd = formCd;
  1262. this.instCd = instCd;
  1263. this.today = today;
  1264. }
  1265. }
  1266. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1267. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1268. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1269. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1270. public partial class GetConsentByFormcdResponse {
  1271. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentByFormcdResponse", Namespace="http://tempuri.org/", Order=0)]
  1272. public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdResponseBody Body;
  1273. public GetConsentByFormcdResponse() {
  1274. }
  1275. public GetConsentByFormcdResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdResponseBody Body) {
  1276. this.Body = Body;
  1277. }
  1278. }
  1279. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1280. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1281. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1282. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1283. public partial class GetConsentByFormcdResponseBody {
  1284. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1285. public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentByFormcdResult;
  1286. public GetConsentByFormcdResponseBody() {
  1287. }
  1288. public GetConsentByFormcdResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentByFormcdResult) {
  1289. this.GetConsentByFormcdResult = GetConsentByFormcdResult;
  1290. }
  1291. }
  1292. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1293. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1294. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1295. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1296. public partial class ReUseCertifyConsentFlagRequest {
  1297. [System.ServiceModel.MessageBodyMemberAttribute(Name="ReUseCertifyConsentFlag", Namespace="http://tempuri.org/", Order=0)]
  1298. public CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagRequestBody Body;
  1299. public ReUseCertifyConsentFlagRequest() {
  1300. }
  1301. public ReUseCertifyConsentFlagRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagRequestBody Body) {
  1302. this.Body = Body;
  1303. }
  1304. }
  1305. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1306. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1307. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1308. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1309. public partial class ReUseCertifyConsentFlagRequestBody {
  1310. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1311. public string pid;
  1312. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  1313. public string ordDd;
  1314. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  1315. public string cretNo;
  1316. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  1317. public string ordType;
  1318. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  1319. public string recDd;
  1320. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  1321. public string userId;
  1322. public ReUseCertifyConsentFlagRequestBody() {
  1323. }
  1324. public ReUseCertifyConsentFlagRequestBody(string pid, string ordDd, string cretNo, string ordType, string recDd, string userId) {
  1325. this.pid = pid;
  1326. this.ordDd = ordDd;
  1327. this.cretNo = cretNo;
  1328. this.ordType = ordType;
  1329. this.recDd = recDd;
  1330. this.userId = userId;
  1331. }
  1332. }
  1333. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1334. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1335. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1336. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1337. public partial class ReUseCertifyConsentFlagResponse {
  1338. [System.ServiceModel.MessageBodyMemberAttribute(Name="ReUseCertifyConsentFlagResponse", Namespace="http://tempuri.org/", Order=0)]
  1339. public CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagResponseBody Body;
  1340. public ReUseCertifyConsentFlagResponse() {
  1341. }
  1342. public ReUseCertifyConsentFlagResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagResponseBody Body) {
  1343. this.Body = Body;
  1344. }
  1345. }
  1346. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1347. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1348. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1349. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1350. public partial class ReUseCertifyConsentFlagResponseBody {
  1351. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1352. public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData ReUseCertifyConsentFlagResult;
  1353. public ReUseCertifyConsentFlagResponseBody() {
  1354. }
  1355. public ReUseCertifyConsentFlagResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData ReUseCertifyConsentFlagResult) {
  1356. this.ReUseCertifyConsentFlagResult = ReUseCertifyConsentFlagResult;
  1357. }
  1358. }
  1359. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1360. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1361. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1362. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1363. public partial class getSaveAllFlagRequest {
  1364. [System.ServiceModel.MessageBodyMemberAttribute(Name="getSaveAllFlag", Namespace="http://tempuri.org/", Order=0)]
  1365. public CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagRequestBody Body;
  1366. public getSaveAllFlagRequest() {
  1367. }
  1368. public getSaveAllFlagRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagRequestBody Body) {
  1369. this.Body = Body;
  1370. }
  1371. }
  1372. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1373. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1374. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1375. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1376. public partial class getSaveAllFlagRequestBody {
  1377. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1378. public string instcd;
  1379. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  1380. public string userid;
  1381. public getSaveAllFlagRequestBody() {
  1382. }
  1383. public getSaveAllFlagRequestBody(string instcd, string userid) {
  1384. this.instcd = instcd;
  1385. this.userid = userid;
  1386. }
  1387. }
  1388. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1389. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1390. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1391. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1392. public partial class getSaveAllFlagResponse {
  1393. [System.ServiceModel.MessageBodyMemberAttribute(Name="getSaveAllFlagResponse", Namespace="http://tempuri.org/", Order=0)]
  1394. public CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagResponseBody Body;
  1395. public getSaveAllFlagResponse() {
  1396. }
  1397. public getSaveAllFlagResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagResponseBody Body) {
  1398. this.Body = Body;
  1399. }
  1400. }
  1401. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1402. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1403. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1404. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1405. public partial class getSaveAllFlagResponseBody {
  1406. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1407. public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData getSaveAllFlagResult;
  1408. public getSaveAllFlagResponseBody() {
  1409. }
  1410. public getSaveAllFlagResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData getSaveAllFlagResult) {
  1411. this.getSaveAllFlagResult = getSaveAllFlagResult;
  1412. }
  1413. }
  1414. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1415. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1416. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1417. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1418. public partial class GetConsentImageRequest {
  1419. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentImage", Namespace="http://tempuri.org/", Order=0)]
  1420. public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageRequestBody Body;
  1421. public GetConsentImageRequest() {
  1422. }
  1423. public GetConsentImageRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageRequestBody Body) {
  1424. this.Body = Body;
  1425. }
  1426. }
  1427. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1428. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1429. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1430. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1431. public partial class GetConsentImageRequestBody {
  1432. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1433. public string consentMstRid;
  1434. public GetConsentImageRequestBody() {
  1435. }
  1436. public GetConsentImageRequestBody(string consentMstRid) {
  1437. this.consentMstRid = consentMstRid;
  1438. }
  1439. }
  1440. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1441. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1442. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1443. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1444. public partial class GetConsentImageResponse {
  1445. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentImageResponse", Namespace="http://tempuri.org/", Order=0)]
  1446. public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageResponseBody Body;
  1447. public GetConsentImageResponse() {
  1448. }
  1449. public GetConsentImageResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageResponseBody Body) {
  1450. this.Body = Body;
  1451. }
  1452. }
  1453. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1454. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1455. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1456. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1457. public partial class GetConsentImageResponseBody {
  1458. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1459. public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentImageVO[] GetConsentImageResult;
  1460. public GetConsentImageResponseBody() {
  1461. }
  1462. public GetConsentImageResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentImageVO[] GetConsentImageResult) {
  1463. this.GetConsentImageResult = GetConsentImageResult;
  1464. }
  1465. }
  1466. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1467. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1468. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1469. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1470. public partial class GetConsentAudioCountRequest {
  1471. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentAudioCount", Namespace="http://tempuri.org/", Order=0)]
  1472. public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountRequestBody Body;
  1473. public GetConsentAudioCountRequest() {
  1474. }
  1475. public GetConsentAudioCountRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountRequestBody Body) {
  1476. this.Body = Body;
  1477. }
  1478. }
  1479. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1480. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1481. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1482. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1483. public partial class GetConsentAudioCountRequestBody {
  1484. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1485. public string consentMstRid;
  1486. public GetConsentAudioCountRequestBody() {
  1487. }
  1488. public GetConsentAudioCountRequestBody(string consentMstRid) {
  1489. this.consentMstRid = consentMstRid;
  1490. }
  1491. }
  1492. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1493. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1494. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1495. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1496. public partial class GetConsentAudioCountResponse {
  1497. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentAudioCountResponse", Namespace="http://tempuri.org/", Order=0)]
  1498. public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountResponseBody Body;
  1499. public GetConsentAudioCountResponse() {
  1500. }
  1501. public GetConsentAudioCountResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountResponseBody Body) {
  1502. this.Body = Body;
  1503. }
  1504. }
  1505. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1506. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1507. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1508. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1509. public partial class GetConsentAudioCountResponseBody {
  1510. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1511. public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData GetConsentAudioCountResult;
  1512. public GetConsentAudioCountResponseBody() {
  1513. }
  1514. public GetConsentAudioCountResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData GetConsentAudioCountResult) {
  1515. this.GetConsentAudioCountResult = GetConsentAudioCountResult;
  1516. }
  1517. }
  1518. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1519. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1520. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1521. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1522. public partial class GetConsentAudioRequest {
  1523. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentAudio", Namespace="http://tempuri.org/", Order=0)]
  1524. public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioRequestBody Body;
  1525. public GetConsentAudioRequest() {
  1526. }
  1527. public GetConsentAudioRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioRequestBody Body) {
  1528. this.Body = Body;
  1529. }
  1530. }
  1531. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1532. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1533. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1534. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1535. public partial class GetConsentAudioRequestBody {
  1536. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1537. public string consentMstRid;
  1538. public GetConsentAudioRequestBody() {
  1539. }
  1540. public GetConsentAudioRequestBody(string consentMstRid) {
  1541. this.consentMstRid = consentMstRid;
  1542. }
  1543. }
  1544. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1545. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1546. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1547. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1548. public partial class GetConsentAudioResponse {
  1549. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentAudioResponse", Namespace="http://tempuri.org/", Order=0)]
  1550. public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioResponseBody Body;
  1551. public GetConsentAudioResponse() {
  1552. }
  1553. public GetConsentAudioResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioResponseBody Body) {
  1554. this.Body = Body;
  1555. }
  1556. }
  1557. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1558. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1559. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1560. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1561. public partial class GetConsentAudioResponseBody {
  1562. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1563. public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentImageVO[] GetConsentAudioResult;
  1564. public GetConsentAudioResponseBody() {
  1565. }
  1566. public GetConsentAudioResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentImageVO[] GetConsentAudioResult) {
  1567. this.GetConsentAudioResult = GetConsentAudioResult;
  1568. }
  1569. }
  1570. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1571. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1572. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1573. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1574. public partial class saveDeleteRequest {
  1575. [System.ServiceModel.MessageBodyMemberAttribute(Name="saveDelete", Namespace="http://tempuri.org/", Order=0)]
  1576. public CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteRequestBody Body;
  1577. public saveDeleteRequest() {
  1578. }
  1579. public saveDeleteRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteRequestBody Body) {
  1580. this.Body = Body;
  1581. }
  1582. }
  1583. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1584. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1585. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1586. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1587. public partial class saveDeleteRequestBody {
  1588. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1589. public string userId;
  1590. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  1591. public string consentMstRid;
  1592. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  1593. public string reasonForUseN;
  1594. public saveDeleteRequestBody() {
  1595. }
  1596. public saveDeleteRequestBody(string userId, string consentMstRid, string reasonForUseN) {
  1597. this.userId = userId;
  1598. this.consentMstRid = consentMstRid;
  1599. this.reasonForUseN = reasonForUseN;
  1600. }
  1601. }
  1602. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1603. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1604. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1605. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1606. public partial class saveDeleteResponse {
  1607. [System.ServiceModel.MessageBodyMemberAttribute(Name="saveDeleteResponse", Namespace="http://tempuri.org/", Order=0)]
  1608. public CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteResponseBody Body;
  1609. public saveDeleteResponse() {
  1610. }
  1611. public saveDeleteResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteResponseBody Body) {
  1612. this.Body = Body;
  1613. }
  1614. }
  1615. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1616. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1617. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1618. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1619. public partial class saveDeleteResponseBody {
  1620. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1621. public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData saveDeleteResult;
  1622. public saveDeleteResponseBody() {
  1623. }
  1624. public saveDeleteResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData saveDeleteResult) {
  1625. this.saveDeleteResult = saveDeleteResult;
  1626. }
  1627. }
  1628. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1629. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1630. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1631. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1632. public partial class SaveTempDataRequest {
  1633. [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveTempData", Namespace="http://tempuri.org/", Order=0)]
  1634. public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataRequestBody Body;
  1635. public SaveTempDataRequest() {
  1636. }
  1637. public SaveTempDataRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataRequestBody Body) {
  1638. this.Body = Body;
  1639. }
  1640. }
  1641. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1642. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1643. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1644. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1645. public partial class SaveTempDataRequestBody {
  1646. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1647. public string userId;
  1648. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  1649. public string userDeptCd;
  1650. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  1651. public string pid;
  1652. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  1653. public string formId;
  1654. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  1655. public string formCd;
  1656. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  1657. public string patientDeptCd;
  1658. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
  1659. public string formXml;
  1660. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
  1661. public string dataXml;
  1662. [System.Runtime.Serialization.DataMemberAttribute(Order=8)]
  1663. public int consentMstRid;
  1664. [System.Runtime.Serialization.DataMemberAttribute(Order=9)]
  1665. public int reWriteConsentMstRid;
  1666. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
  1667. public string deviceType;
  1668. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
  1669. public string deviceMacAddr;
  1670. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
  1671. public string ordType;
  1672. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
  1673. public string instCd;
  1674. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
  1675. public string inDd;
  1676. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
  1677. public string dSchDd;
  1678. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=16)]
  1679. public string ward;
  1680. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=17)]
  1681. public string roomCd;
  1682. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=18)]
  1683. public string ocrTag;
  1684. [System.Runtime.Serialization.DataMemberAttribute(Order=19)]
  1685. public int cretNo;
  1686. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=20)]
  1687. public string mainDrId;
  1688. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=21)]
  1689. public string formPageCnt;
  1690. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=22)]
  1691. public string actionKind;
  1692. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=23)]
  1693. public string opRsrvNo;
  1694. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=24)]
  1695. public string consentState;
  1696. [System.Runtime.Serialization.DataMemberAttribute(Order=25)]
  1697. public int orderNo;
  1698. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=26)]
  1699. public string orderName;
  1700. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=27)]
  1701. public string orderCd;
  1702. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=28)]
  1703. public string audioFileJson;
  1704. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=29)]
  1705. public string audioFileSize;
  1706. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=30)]
  1707. public string imageFileJson;
  1708. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=31)]
  1709. public string fileSize;
  1710. public SaveTempDataRequestBody() {
  1711. }
  1712. public SaveTempDataRequestBody(
  1713. string userId,
  1714. string userDeptCd,
  1715. string pid,
  1716. string formId,
  1717. string formCd,
  1718. string patientDeptCd,
  1719. string formXml,
  1720. string dataXml,
  1721. int consentMstRid,
  1722. int reWriteConsentMstRid,
  1723. string deviceType,
  1724. string deviceMacAddr,
  1725. string ordType,
  1726. string instCd,
  1727. string inDd,
  1728. string dSchDd,
  1729. string ward,
  1730. string roomCd,
  1731. string ocrTag,
  1732. int cretNo,
  1733. string mainDrId,
  1734. string formPageCnt,
  1735. string actionKind,
  1736. string opRsrvNo,
  1737. string consentState,
  1738. int orderNo,
  1739. string orderName,
  1740. string orderCd,
  1741. string audioFileJson,
  1742. string audioFileSize,
  1743. string imageFileJson,
  1744. string fileSize) {
  1745. this.userId = userId;
  1746. this.userDeptCd = userDeptCd;
  1747. this.pid = pid;
  1748. this.formId = formId;
  1749. this.formCd = formCd;
  1750. this.patientDeptCd = patientDeptCd;
  1751. this.formXml = formXml;
  1752. this.dataXml = dataXml;
  1753. this.consentMstRid = consentMstRid;
  1754. this.reWriteConsentMstRid = reWriteConsentMstRid;
  1755. this.deviceType = deviceType;
  1756. this.deviceMacAddr = deviceMacAddr;
  1757. this.ordType = ordType;
  1758. this.instCd = instCd;
  1759. this.inDd = inDd;
  1760. this.dSchDd = dSchDd;
  1761. this.ward = ward;
  1762. this.roomCd = roomCd;
  1763. this.ocrTag = ocrTag;
  1764. this.cretNo = cretNo;
  1765. this.mainDrId = mainDrId;
  1766. this.formPageCnt = formPageCnt;
  1767. this.actionKind = actionKind;
  1768. this.opRsrvNo = opRsrvNo;
  1769. this.consentState = consentState;
  1770. this.orderNo = orderNo;
  1771. this.orderName = orderName;
  1772. this.orderCd = orderCd;
  1773. this.audioFileJson = audioFileJson;
  1774. this.audioFileSize = audioFileSize;
  1775. this.imageFileJson = imageFileJson;
  1776. this.fileSize = fileSize;
  1777. }
  1778. }
  1779. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1780. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1781. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1782. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1783. public partial class SaveTempDataResponse {
  1784. [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveTempDataResponse", Namespace="http://tempuri.org/", Order=0)]
  1785. public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataResponseBody Body;
  1786. public SaveTempDataResponse() {
  1787. }
  1788. public SaveTempDataResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataResponseBody Body) {
  1789. this.Body = Body;
  1790. }
  1791. }
  1792. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1793. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1794. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1795. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1796. public partial class SaveTempDataResponseBody {
  1797. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1798. public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveTempDataResult;
  1799. public SaveTempDataResponseBody() {
  1800. }
  1801. public SaveTempDataResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveTempDataResult) {
  1802. this.SaveTempDataResult = SaveTempDataResult;
  1803. }
  1804. }
  1805. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1806. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1807. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1808. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1809. public partial class SaveAutoCompleteAllRequest {
  1810. [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveAutoCompleteAll", Namespace="http://tempuri.org/", Order=0)]
  1811. public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllRequestBody Body;
  1812. public SaveAutoCompleteAllRequest() {
  1813. }
  1814. public SaveAutoCompleteAllRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllRequestBody Body) {
  1815. this.Body = Body;
  1816. }
  1817. }
  1818. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1819. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1820. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1821. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1822. public partial class SaveAutoCompleteAllRequestBody {
  1823. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1824. public string userId;
  1825. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  1826. public string userName;
  1827. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  1828. public string macAddress;
  1829. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  1830. public string json;
  1831. public SaveAutoCompleteAllRequestBody() {
  1832. }
  1833. public SaveAutoCompleteAllRequestBody(string userId, string userName, string macAddress, string json) {
  1834. this.userId = userId;
  1835. this.userName = userName;
  1836. this.macAddress = macAddress;
  1837. this.json = json;
  1838. }
  1839. }
  1840. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1841. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1842. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1843. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1844. public partial class SaveAutoCompleteAllResponse {
  1845. [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveAutoCompleteAllResponse", Namespace="http://tempuri.org/", Order=0)]
  1846. public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllResponseBody Body;
  1847. public SaveAutoCompleteAllResponse() {
  1848. }
  1849. public SaveAutoCompleteAllResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllResponseBody Body) {
  1850. this.Body = Body;
  1851. }
  1852. }
  1853. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1854. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1855. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1856. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1857. public partial class SaveAutoCompleteAllResponseBody {
  1858. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1859. public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveAutoCompleteAllResult;
  1860. public SaveAutoCompleteAllResponseBody() {
  1861. }
  1862. public SaveAutoCompleteAllResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveAutoCompleteAllResult) {
  1863. this.SaveAutoCompleteAllResult = SaveAutoCompleteAllResult;
  1864. }
  1865. }
  1866. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1867. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1868. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1869. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1870. public partial class imrTestRequest {
  1871. [System.ServiceModel.MessageBodyMemberAttribute(Name="imrTest", Namespace="http://tempuri.org/", Order=0)]
  1872. public CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestRequestBody Body;
  1873. public imrTestRequest() {
  1874. }
  1875. public imrTestRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestRequestBody Body) {
  1876. this.Body = Body;
  1877. }
  1878. }
  1879. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1880. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1881. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1882. [System.Runtime.Serialization.DataContractAttribute()]
  1883. public partial class imrTestRequestBody {
  1884. public imrTestRequestBody() {
  1885. }
  1886. }
  1887. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1888. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1889. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1890. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1891. public partial class imrTestResponse {
  1892. [System.ServiceModel.MessageBodyMemberAttribute(Name="imrTestResponse", Namespace="http://tempuri.org/", Order=0)]
  1893. public CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestResponseBody Body;
  1894. public imrTestResponse() {
  1895. }
  1896. public imrTestResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestResponseBody Body) {
  1897. this.Body = Body;
  1898. }
  1899. }
  1900. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1901. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1902. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1903. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1904. public partial class imrTestResponseBody {
  1905. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1906. public CLIP.eForm.Consent.UI.ConsentSvcRef.ImrData imrTestResult;
  1907. public imrTestResponseBody() {
  1908. }
  1909. public imrTestResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ImrData imrTestResult) {
  1910. this.imrTestResult = imrTestResult;
  1911. }
  1912. }
  1913. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1914. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1915. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1916. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  1917. public partial class SaveCompleteAllRequest {
  1918. [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveCompleteAll", Namespace="http://tempuri.org/", Order=0)]
  1919. public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllRequestBody Body;
  1920. public SaveCompleteAllRequest() {
  1921. }
  1922. public SaveCompleteAllRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllRequestBody Body) {
  1923. this.Body = Body;
  1924. }
  1925. }
  1926. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1927. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  1928. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  1929. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  1930. public partial class SaveCompleteAllRequestBody {
  1931. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  1932. public string userId;
  1933. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  1934. public string userDeptCd;
  1935. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  1936. public string pid;
  1937. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  1938. public string formId;
  1939. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  1940. public string formCd;
  1941. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  1942. public string patientDeptCd;
  1943. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
  1944. public string formXml;
  1945. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
  1946. public string dataXml;
  1947. [System.Runtime.Serialization.DataMemberAttribute(Order=8)]
  1948. public int consentMstRid;
  1949. [System.Runtime.Serialization.DataMemberAttribute(Order=9)]
  1950. public int reWriteConsentMstRid;
  1951. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
  1952. public string deviceType;
  1953. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
  1954. public string deviceMacAddr;
  1955. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
  1956. public string ordType;
  1957. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
  1958. public string instCd;
  1959. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
  1960. public string inDd;
  1961. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
  1962. public string dSchDd;
  1963. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=16)]
  1964. public string ward;
  1965. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=17)]
  1966. public string roomCd;
  1967. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=18)]
  1968. public string ocrTag;
  1969. [System.Runtime.Serialization.DataMemberAttribute(Order=19)]
  1970. public int cretNo;
  1971. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=20)]
  1972. public string mainDrId;
  1973. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=21)]
  1974. public string formPageCnt;
  1975. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=22)]
  1976. public string actionKind;
  1977. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=23)]
  1978. public string opRsrvNo;
  1979. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=24)]
  1980. public string consentState;
  1981. [System.Runtime.Serialization.DataMemberAttribute(Order=25)]
  1982. public int orderNo;
  1983. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=26)]
  1984. public string orderName;
  1985. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=27)]
  1986. public string orderCd;
  1987. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=28)]
  1988. public string imageFileJson;
  1989. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=29)]
  1990. public string fileSize;
  1991. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=30)]
  1992. public string certResult;
  1993. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=31)]
  1994. public string certTarget;
  1995. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=32)]
  1996. public string audioFileJson;
  1997. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=33)]
  1998. public string audioFileSize;
  1999. public SaveCompleteAllRequestBody() {
  2000. }
  2001. public SaveCompleteAllRequestBody(
  2002. string userId,
  2003. string userDeptCd,
  2004. string pid,
  2005. string formId,
  2006. string formCd,
  2007. string patientDeptCd,
  2008. string formXml,
  2009. string dataXml,
  2010. int consentMstRid,
  2011. int reWriteConsentMstRid,
  2012. string deviceType,
  2013. string deviceMacAddr,
  2014. string ordType,
  2015. string instCd,
  2016. string inDd,
  2017. string dSchDd,
  2018. string ward,
  2019. string roomCd,
  2020. string ocrTag,
  2021. int cretNo,
  2022. string mainDrId,
  2023. string formPageCnt,
  2024. string actionKind,
  2025. string opRsrvNo,
  2026. string consentState,
  2027. int orderNo,
  2028. string orderName,
  2029. string orderCd,
  2030. string imageFileJson,
  2031. string fileSize,
  2032. string certResult,
  2033. string certTarget,
  2034. string audioFileJson,
  2035. string audioFileSize) {
  2036. this.userId = userId;
  2037. this.userDeptCd = userDeptCd;
  2038. this.pid = pid;
  2039. this.formId = formId;
  2040. this.formCd = formCd;
  2041. this.patientDeptCd = patientDeptCd;
  2042. this.formXml = formXml;
  2043. this.dataXml = dataXml;
  2044. this.consentMstRid = consentMstRid;
  2045. this.reWriteConsentMstRid = reWriteConsentMstRid;
  2046. this.deviceType = deviceType;
  2047. this.deviceMacAddr = deviceMacAddr;
  2048. this.ordType = ordType;
  2049. this.instCd = instCd;
  2050. this.inDd = inDd;
  2051. this.dSchDd = dSchDd;
  2052. this.ward = ward;
  2053. this.roomCd = roomCd;
  2054. this.ocrTag = ocrTag;
  2055. this.cretNo = cretNo;
  2056. this.mainDrId = mainDrId;
  2057. this.formPageCnt = formPageCnt;
  2058. this.actionKind = actionKind;
  2059. this.opRsrvNo = opRsrvNo;
  2060. this.consentState = consentState;
  2061. this.orderNo = orderNo;
  2062. this.orderName = orderName;
  2063. this.orderCd = orderCd;
  2064. this.imageFileJson = imageFileJson;
  2065. this.fileSize = fileSize;
  2066. this.certResult = certResult;
  2067. this.certTarget = certTarget;
  2068. this.audioFileJson = audioFileJson;
  2069. this.audioFileSize = audioFileSize;
  2070. }
  2071. }
  2072. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2073. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2074. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2075. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2076. public partial class SaveCompleteAllResponse {
  2077. [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveCompleteAllResponse", Namespace="http://tempuri.org/", Order=0)]
  2078. public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllResponseBody Body;
  2079. public SaveCompleteAllResponse() {
  2080. }
  2081. public SaveCompleteAllResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllResponseBody Body) {
  2082. this.Body = Body;
  2083. }
  2084. }
  2085. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2086. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2087. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2088. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2089. public partial class SaveCompleteAllResponseBody {
  2090. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2091. public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveCompleteAllResult;
  2092. public SaveCompleteAllResponseBody() {
  2093. }
  2094. public SaveCompleteAllResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveCompleteAllResult) {
  2095. this.SaveCompleteAllResult = SaveCompleteAllResult;
  2096. }
  2097. }
  2098. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2099. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2100. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2101. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2102. public partial class GetConsentFormXmlRequest {
  2103. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentFormXml", Namespace="http://tempuri.org/", Order=0)]
  2104. public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlRequestBody Body;
  2105. public GetConsentFormXmlRequest() {
  2106. }
  2107. public GetConsentFormXmlRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlRequestBody Body) {
  2108. this.Body = Body;
  2109. }
  2110. }
  2111. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2112. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2113. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2114. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2115. public partial class GetConsentFormXmlRequestBody {
  2116. [System.Runtime.Serialization.DataMemberAttribute(Order=0)]
  2117. public int consentMstRid;
  2118. public GetConsentFormXmlRequestBody() {
  2119. }
  2120. public GetConsentFormXmlRequestBody(int consentMstRid) {
  2121. this.consentMstRid = consentMstRid;
  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 GetConsentFormXmlResponse {
  2129. [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentFormXmlResponse", Namespace="http://tempuri.org/", Order=0)]
  2130. public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlResponseBody Body;
  2131. public GetConsentFormXmlResponse() {
  2132. }
  2133. public GetConsentFormXmlResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlResponseBody 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 GetConsentFormXmlResponseBody {
  2142. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2143. public string GetConsentFormXmlResult;
  2144. public GetConsentFormXmlResponseBody() {
  2145. }
  2146. public GetConsentFormXmlResponseBody(string GetConsentFormXmlResult) {
  2147. this.GetConsentFormXmlResult = GetConsentFormXmlResult;
  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 SavePrintOutRequest {
  2155. [System.ServiceModel.MessageBodyMemberAttribute(Name="SavePrintOut", Namespace="http://tempuri.org/", Order=0)]
  2156. public CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutRequestBody Body;
  2157. public SavePrintOutRequest() {
  2158. }
  2159. public SavePrintOutRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutRequestBody 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 SavePrintOutRequestBody {
  2168. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2169. public string userId;
  2170. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2171. public string patientCode;
  2172. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  2173. public string clnDeptCode;
  2174. [System.Runtime.Serialization.DataMemberAttribute(Order=3)]
  2175. public int formRid;
  2176. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  2177. public string formCd;
  2178. [System.Runtime.Serialization.DataMemberAttribute(Order=5)]
  2179. public int consentMstRid;
  2180. [System.Runtime.Serialization.DataMemberAttribute(Order=6)]
  2181. public int reissueConsentMstRid;
  2182. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
  2183. public string formXml;
  2184. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
  2185. public string dataXml;
  2186. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
  2187. public string deviceType;
  2188. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
  2189. public string deviceIdentNo;
  2190. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
  2191. public string vistType;
  2192. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
  2193. public string hosType;
  2194. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
  2195. public string clnDate;
  2196. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
  2197. public string ward;
  2198. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
  2199. public string roomcd;
  2200. [System.Runtime.Serialization.DataMemberAttribute(Order=16)]
  2201. public int orderNo;
  2202. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=17)]
  2203. public string orderName;
  2204. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=18)]
  2205. public string orderCd;
  2206. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=19)]
  2207. public string ocrCode;
  2208. [System.Runtime.Serialization.DataMemberAttribute(Order=20)]
  2209. public int cretno;
  2210. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=21)]
  2211. public string createUserName;
  2212. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=22)]
  2213. public string modifyUserName;
  2214. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=23)]
  2215. public string mainDrId;
  2216. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=24)]
  2217. public string userDeptCd;
  2218. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=25)]
  2219. public string pageCnt;
  2220. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=26)]
  2221. public string actKind;
  2222. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=27)]
  2223. public string clientType;
  2224. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=28)]
  2225. public string opRsrvNo;
  2226. public SavePrintOutRequestBody() {
  2227. }
  2228. public SavePrintOutRequestBody(
  2229. string userId,
  2230. string patientCode,
  2231. string clnDeptCode,
  2232. int formRid,
  2233. string formCd,
  2234. int consentMstRid,
  2235. int reissueConsentMstRid,
  2236. string formXml,
  2237. string dataXml,
  2238. string deviceType,
  2239. string deviceIdentNo,
  2240. string vistType,
  2241. string hosType,
  2242. string clnDate,
  2243. string ward,
  2244. string roomcd,
  2245. int orderNo,
  2246. string orderName,
  2247. string orderCd,
  2248. string ocrCode,
  2249. int cretno,
  2250. string createUserName,
  2251. string modifyUserName,
  2252. string mainDrId,
  2253. string userDeptCd,
  2254. string pageCnt,
  2255. string actKind,
  2256. string clientType,
  2257. string opRsrvNo) {
  2258. this.userId = userId;
  2259. this.patientCode = patientCode;
  2260. this.clnDeptCode = clnDeptCode;
  2261. this.formRid = formRid;
  2262. this.formCd = formCd;
  2263. this.consentMstRid = consentMstRid;
  2264. this.reissueConsentMstRid = reissueConsentMstRid;
  2265. this.formXml = formXml;
  2266. this.dataXml = dataXml;
  2267. this.deviceType = deviceType;
  2268. this.deviceIdentNo = deviceIdentNo;
  2269. this.vistType = vistType;
  2270. this.hosType = hosType;
  2271. this.clnDate = clnDate;
  2272. this.ward = ward;
  2273. this.roomcd = roomcd;
  2274. this.orderNo = orderNo;
  2275. this.orderName = orderName;
  2276. this.orderCd = orderCd;
  2277. this.ocrCode = ocrCode;
  2278. this.cretno = cretno;
  2279. this.createUserName = createUserName;
  2280. this.modifyUserName = modifyUserName;
  2281. this.mainDrId = mainDrId;
  2282. this.userDeptCd = userDeptCd;
  2283. this.pageCnt = pageCnt;
  2284. this.actKind = actKind;
  2285. this.clientType = clientType;
  2286. this.opRsrvNo = opRsrvNo;
  2287. }
  2288. }
  2289. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2290. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2291. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2292. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2293. public partial class SavePrintOutResponse {
  2294. [System.ServiceModel.MessageBodyMemberAttribute(Name="SavePrintOutResponse", Namespace="http://tempuri.org/", Order=0)]
  2295. public CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutResponseBody Body;
  2296. public SavePrintOutResponse() {
  2297. }
  2298. public SavePrintOutResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutResponseBody Body) {
  2299. this.Body = Body;
  2300. }
  2301. }
  2302. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2303. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2304. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2305. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2306. public partial class SavePrintOutResponseBody {
  2307. [System.Runtime.Serialization.DataMemberAttribute(Order=0)]
  2308. public int SavePrintOutResult;
  2309. public SavePrintOutResponseBody() {
  2310. }
  2311. public SavePrintOutResponseBody(int SavePrintOutResult) {
  2312. this.SavePrintOutResult = SavePrintOutResult;
  2313. }
  2314. }
  2315. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2316. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2317. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2318. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2319. public partial class SaveMedicalHistoryRequest {
  2320. [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveMedicalHistory", Namespace="http://tempuri.org/", Order=0)]
  2321. public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryRequestBody Body;
  2322. public SaveMedicalHistoryRequest() {
  2323. }
  2324. public SaveMedicalHistoryRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryRequestBody Body) {
  2325. this.Body = Body;
  2326. }
  2327. }
  2328. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2329. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2330. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2331. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2332. public partial class SaveMedicalHistoryRequestBody {
  2333. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2334. public string patientCode;
  2335. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2336. public string clnDate;
  2337. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  2338. public string bp;
  2339. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  2340. public string dm;
  2341. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  2342. public string heart;
  2343. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  2344. public string kidney;
  2345. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
  2346. public string respiration;
  2347. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
  2348. public string hx;
  2349. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
  2350. public string allergy;
  2351. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
  2352. public string drug;
  2353. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
  2354. public string smoking;
  2355. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
  2356. public string idio;
  2357. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
  2358. public string nacrotics;
  2359. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
  2360. public string airway;
  2361. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
  2362. public string hemorrhage;
  2363. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
  2364. public string status_etc;
  2365. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=16)]
  2366. public string userId;
  2367. public SaveMedicalHistoryRequestBody() {
  2368. }
  2369. public SaveMedicalHistoryRequestBody(
  2370. string patientCode,
  2371. string clnDate,
  2372. string bp,
  2373. string dm,
  2374. string heart,
  2375. string kidney,
  2376. string respiration,
  2377. string hx,
  2378. string allergy,
  2379. string drug,
  2380. string smoking,
  2381. string idio,
  2382. string nacrotics,
  2383. string airway,
  2384. string hemorrhage,
  2385. string status_etc,
  2386. string userId) {
  2387. this.patientCode = patientCode;
  2388. this.clnDate = clnDate;
  2389. this.bp = bp;
  2390. this.dm = dm;
  2391. this.heart = heart;
  2392. this.kidney = kidney;
  2393. this.respiration = respiration;
  2394. this.hx = hx;
  2395. this.allergy = allergy;
  2396. this.drug = drug;
  2397. this.smoking = smoking;
  2398. this.idio = idio;
  2399. this.nacrotics = nacrotics;
  2400. this.airway = airway;
  2401. this.hemorrhage = hemorrhage;
  2402. this.status_etc = status_etc;
  2403. this.userId = userId;
  2404. }
  2405. }
  2406. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2407. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2408. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2409. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2410. public partial class SaveMedicalHistoryResponse {
  2411. [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveMedicalHistoryResponse", Namespace="http://tempuri.org/", Order=0)]
  2412. public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryResponseBody Body;
  2413. public SaveMedicalHistoryResponse() {
  2414. }
  2415. public SaveMedicalHistoryResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryResponseBody Body) {
  2416. this.Body = Body;
  2417. }
  2418. }
  2419. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2420. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2421. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2422. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2423. public partial class SaveMedicalHistoryResponseBody {
  2424. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2425. public string SaveMedicalHistoryResult;
  2426. public SaveMedicalHistoryResponseBody() {
  2427. }
  2428. public SaveMedicalHistoryResponseBody(string SaveMedicalHistoryResult) {
  2429. this.SaveMedicalHistoryResult = SaveMedicalHistoryResult;
  2430. }
  2431. }
  2432. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2433. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2434. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2435. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2436. public partial class SaveImageUploadInfoRequest {
  2437. [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveImageUploadInfo", Namespace="http://tempuri.org/", Order=0)]
  2438. public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoRequestBody Body;
  2439. public SaveImageUploadInfoRequest() {
  2440. }
  2441. public SaveImageUploadInfoRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoRequestBody Body) {
  2442. this.Body = Body;
  2443. }
  2444. }
  2445. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2446. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2447. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2448. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2449. public partial class SaveImageUploadInfoRequestBody {
  2450. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2451. public string consentState;
  2452. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2453. public string imageFileName;
  2454. [System.Runtime.Serialization.DataMemberAttribute(Order=2)]
  2455. public int consentMstRid;
  2456. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  2457. public string userId;
  2458. [System.Runtime.Serialization.DataMemberAttribute(Order=4)]
  2459. public int formRid;
  2460. public SaveImageUploadInfoRequestBody() {
  2461. }
  2462. public SaveImageUploadInfoRequestBody(string consentState, string imageFileName, int consentMstRid, string userId, int formRid) {
  2463. this.consentState = consentState;
  2464. this.imageFileName = imageFileName;
  2465. this.consentMstRid = consentMstRid;
  2466. this.userId = userId;
  2467. this.formRid = formRid;
  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.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2474. public partial class SaveImageUploadInfoResponse {
  2475. [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveImageUploadInfoResponse", Namespace="http://tempuri.org/", Order=0)]
  2476. public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoResponseBody Body;
  2477. public SaveImageUploadInfoResponse() {
  2478. }
  2479. public SaveImageUploadInfoResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoResponseBody Body) {
  2480. this.Body = Body;
  2481. }
  2482. }
  2483. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2484. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2485. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2486. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2487. public partial class SaveImageUploadInfoResponseBody {
  2488. [System.Runtime.Serialization.DataMemberAttribute(Order=0)]
  2489. public int SaveImageUploadInfoResult;
  2490. public SaveImageUploadInfoResponseBody() {
  2491. }
  2492. public SaveImageUploadInfoResponseBody(int SaveImageUploadInfoResult) {
  2493. this.SaveImageUploadInfoResult = SaveImageUploadInfoResult;
  2494. }
  2495. }
  2496. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2497. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2498. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2499. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2500. public partial class SaveImageSignInfoRequest {
  2501. [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveImageSignInfo", Namespace="http://tempuri.org/", Order=0)]
  2502. public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoRequestBody Body;
  2503. public SaveImageSignInfoRequest() {
  2504. }
  2505. public SaveImageSignInfoRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoRequestBody Body) {
  2506. this.Body = Body;
  2507. }
  2508. }
  2509. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2510. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2511. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2512. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2513. public partial class SaveImageSignInfoRequestBody {
  2514. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2515. public string consentState;
  2516. [System.Runtime.Serialization.DataMemberAttribute(Order=1)]
  2517. public int consentMstRid;
  2518. [System.Runtime.Serialization.DataMemberAttribute(Order=2)]
  2519. public int consentImageRid;
  2520. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
  2521. public string userId;
  2522. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
  2523. public string certTarget;
  2524. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
  2525. public string sCertResult;
  2526. public SaveImageSignInfoRequestBody() {
  2527. }
  2528. public SaveImageSignInfoRequestBody(string consentState, int consentMstRid, int consentImageRid, string userId, string certTarget, string sCertResult) {
  2529. this.consentState = consentState;
  2530. this.consentMstRid = consentMstRid;
  2531. this.consentImageRid = consentImageRid;
  2532. this.userId = userId;
  2533. this.certTarget = certTarget;
  2534. this.sCertResult = sCertResult;
  2535. }
  2536. }
  2537. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2538. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2539. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2540. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2541. public partial class SaveImageSignInfoResponse {
  2542. [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveImageSignInfoResponse", Namespace="http://tempuri.org/", Order=0)]
  2543. public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoResponseBody Body;
  2544. public SaveImageSignInfoResponse() {
  2545. }
  2546. public SaveImageSignInfoResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoResponseBody Body) {
  2547. this.Body = Body;
  2548. }
  2549. }
  2550. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2551. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2552. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2553. [System.Runtime.Serialization.DataContractAttribute()]
  2554. public partial class SaveImageSignInfoResponseBody {
  2555. public SaveImageSignInfoResponseBody() {
  2556. }
  2557. }
  2558. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2559. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2560. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2561. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2562. public partial class CheckConsentStateRequest {
  2563. [System.ServiceModel.MessageBodyMemberAttribute(Name="CheckConsentState", Namespace="http://tempuri.org/", Order=0)]
  2564. public CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateRequestBody Body;
  2565. public CheckConsentStateRequest() {
  2566. }
  2567. public CheckConsentStateRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateRequestBody Body) {
  2568. this.Body = Body;
  2569. }
  2570. }
  2571. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2572. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2573. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2574. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2575. public partial class CheckConsentStateRequestBody {
  2576. [System.Runtime.Serialization.DataMemberAttribute(Order=0)]
  2577. public int consentmstrid;
  2578. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2579. public string consent_state;
  2580. public CheckConsentStateRequestBody() {
  2581. }
  2582. public CheckConsentStateRequestBody(int consentmstrid, string consent_state) {
  2583. this.consentmstrid = consentmstrid;
  2584. this.consent_state = consent_state;
  2585. }
  2586. }
  2587. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2588. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2589. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2590. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2591. public partial class CheckConsentStateResponse {
  2592. [System.ServiceModel.MessageBodyMemberAttribute(Name="CheckConsentStateResponse", Namespace="http://tempuri.org/", Order=0)]
  2593. public CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateResponseBody Body;
  2594. public CheckConsentStateResponse() {
  2595. }
  2596. public CheckConsentStateResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateResponseBody Body) {
  2597. this.Body = Body;
  2598. }
  2599. }
  2600. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2601. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2602. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2603. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2604. public partial class CheckConsentStateResponseBody {
  2605. [System.Runtime.Serialization.DataMemberAttribute(Order=0)]
  2606. public int CheckConsentStateResult;
  2607. public CheckConsentStateResponseBody() {
  2608. }
  2609. public CheckConsentStateResponseBody(int CheckConsentStateResult) {
  2610. this.CheckConsentStateResult = CheckConsentStateResult;
  2611. }
  2612. }
  2613. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2614. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2615. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2616. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2617. public partial class getOcrStringRequest {
  2618. [System.ServiceModel.MessageBodyMemberAttribute(Name="getOcrString", Namespace="http://tempuri.org/", Order=0)]
  2619. public CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringRequestBody Body;
  2620. public getOcrStringRequest() {
  2621. }
  2622. public getOcrStringRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringRequestBody Body) {
  2623. this.Body = Body;
  2624. }
  2625. }
  2626. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2627. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2628. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2629. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2630. public partial class getOcrStringRequestBody {
  2631. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2632. public string formCd;
  2633. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2634. public string dutinstcd;
  2635. public getOcrStringRequestBody() {
  2636. }
  2637. public getOcrStringRequestBody(string formCd, string dutinstcd) {
  2638. this.formCd = formCd;
  2639. this.dutinstcd = dutinstcd;
  2640. }
  2641. }
  2642. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2643. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2644. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2645. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2646. public partial class getOcrStringResponse {
  2647. [System.ServiceModel.MessageBodyMemberAttribute(Name="getOcrStringResponse", Namespace="http://tempuri.org/", Order=0)]
  2648. public CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringResponseBody Body;
  2649. public getOcrStringResponse() {
  2650. }
  2651. public getOcrStringResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringResponseBody Body) {
  2652. this.Body = Body;
  2653. }
  2654. }
  2655. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2656. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2657. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2658. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2659. public partial class getOcrStringResponseBody {
  2660. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2661. public string getOcrStringResult;
  2662. public getOcrStringResponseBody() {
  2663. }
  2664. public getOcrStringResponseBody(string getOcrStringResult) {
  2665. this.getOcrStringResult = getOcrStringResult;
  2666. }
  2667. }
  2668. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2669. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2670. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2671. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2672. public partial class getCertUseYnRequest {
  2673. [System.ServiceModel.MessageBodyMemberAttribute(Name="getCertUseYn", Namespace="http://tempuri.org/", Order=0)]
  2674. public CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnRequestBody Body;
  2675. public getCertUseYnRequest() {
  2676. }
  2677. public getCertUseYnRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnRequestBody Body) {
  2678. this.Body = Body;
  2679. }
  2680. }
  2681. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2682. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2683. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2684. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2685. public partial class getCertUseYnRequestBody {
  2686. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2687. public string formCd;
  2688. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2689. public string dutinstcd;
  2690. public getCertUseYnRequestBody() {
  2691. }
  2692. public getCertUseYnRequestBody(string formCd, string dutinstcd) {
  2693. this.formCd = formCd;
  2694. this.dutinstcd = dutinstcd;
  2695. }
  2696. }
  2697. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2698. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2699. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2700. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2701. public partial class getCertUseYnResponse {
  2702. [System.ServiceModel.MessageBodyMemberAttribute(Name="getCertUseYnResponse", Namespace="http://tempuri.org/", Order=0)]
  2703. public CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnResponseBody Body;
  2704. public getCertUseYnResponse() {
  2705. }
  2706. public getCertUseYnResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnResponseBody Body) {
  2707. this.Body = Body;
  2708. }
  2709. }
  2710. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2711. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2712. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2713. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2714. public partial class getCertUseYnResponseBody {
  2715. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2716. public string getCertUseYnResult;
  2717. public getCertUseYnResponseBody() {
  2718. }
  2719. public getCertUseYnResponseBody(string getCertUseYnResult) {
  2720. this.getCertUseYnResult = getCertUseYnResult;
  2721. }
  2722. }
  2723. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2724. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2725. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2726. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2727. public partial class getCertUseYnDataRequest {
  2728. [System.ServiceModel.MessageBodyMemberAttribute(Name="getCertUseYnData", Namespace="http://tempuri.org/", Order=0)]
  2729. public CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataRequestBody Body;
  2730. public getCertUseYnDataRequest() {
  2731. }
  2732. public getCertUseYnDataRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataRequestBody Body) {
  2733. this.Body = Body;
  2734. }
  2735. }
  2736. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2737. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2738. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2739. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2740. public partial class getCertUseYnDataRequestBody {
  2741. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2742. public string formCd;
  2743. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2744. public string dutinstcd;
  2745. public getCertUseYnDataRequestBody() {
  2746. }
  2747. public getCertUseYnDataRequestBody(string formCd, string dutinstcd) {
  2748. this.formCd = formCd;
  2749. this.dutinstcd = dutinstcd;
  2750. }
  2751. }
  2752. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2753. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2754. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2755. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2756. public partial class getCertUseYnDataResponse {
  2757. [System.ServiceModel.MessageBodyMemberAttribute(Name="getCertUseYnDataResponse", Namespace="http://tempuri.org/", Order=0)]
  2758. public CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataResponseBody Body;
  2759. public getCertUseYnDataResponse() {
  2760. }
  2761. public getCertUseYnDataResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataResponseBody Body) {
  2762. this.Body = Body;
  2763. }
  2764. }
  2765. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2766. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2767. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2768. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2769. public partial class getCertUseYnDataResponseBody {
  2770. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2771. public string getCertUseYnDataResult;
  2772. public getCertUseYnDataResponseBody() {
  2773. }
  2774. public getCertUseYnDataResponseBody(string getCertUseYnDataResult) {
  2775. this.getCertUseYnDataResult = getCertUseYnDataResult;
  2776. }
  2777. }
  2778. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2779. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2780. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2781. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2782. public partial class getDualViewModeRequest {
  2783. [System.ServiceModel.MessageBodyMemberAttribute(Name="getDualViewMode", Namespace="http://tempuri.org/", Order=0)]
  2784. public CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeRequestBody Body;
  2785. public getDualViewModeRequest() {
  2786. }
  2787. public getDualViewModeRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeRequestBody Body) {
  2788. this.Body = Body;
  2789. }
  2790. }
  2791. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2792. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2793. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2794. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2795. public partial class getDualViewModeRequestBody {
  2796. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2797. public string dutinstcd;
  2798. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2799. public string ipaddr;
  2800. public getDualViewModeRequestBody() {
  2801. }
  2802. public getDualViewModeRequestBody(string dutinstcd, string ipaddr) {
  2803. this.dutinstcd = dutinstcd;
  2804. this.ipaddr = ipaddr;
  2805. }
  2806. }
  2807. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2808. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2809. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2810. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2811. public partial class getDualViewModeResponse {
  2812. [System.ServiceModel.MessageBodyMemberAttribute(Name="getDualViewModeResponse", Namespace="http://tempuri.org/", Order=0)]
  2813. public CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeResponseBody Body;
  2814. public getDualViewModeResponse() {
  2815. }
  2816. public getDualViewModeResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeResponseBody Body) {
  2817. this.Body = Body;
  2818. }
  2819. }
  2820. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2821. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2822. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2823. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2824. public partial class getDualViewModeResponseBody {
  2825. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2826. public string getDualViewModeResult;
  2827. public getDualViewModeResponseBody() {
  2828. }
  2829. public getDualViewModeResponseBody(string getDualViewModeResult) {
  2830. this.getDualViewModeResult = getDualViewModeResult;
  2831. }
  2832. }
  2833. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2834. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2835. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2836. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2837. public partial class updateCertifyCompleteRequest {
  2838. [System.ServiceModel.MessageBodyMemberAttribute(Name="updateCertifyComplete", Namespace="http://tempuri.org/", Order=0)]
  2839. public CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteRequestBody Body;
  2840. public updateCertifyCompleteRequest() {
  2841. }
  2842. public updateCertifyCompleteRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteRequestBody Body) {
  2843. this.Body = Body;
  2844. }
  2845. }
  2846. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2847. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2848. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2849. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2850. public partial class updateCertifyCompleteRequestBody {
  2851. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2852. public string consent_rids;
  2853. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2854. public string ocrtags;
  2855. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  2856. public string instcd;
  2857. public updateCertifyCompleteRequestBody() {
  2858. }
  2859. public updateCertifyCompleteRequestBody(string consent_rids, string ocrtags, string instcd) {
  2860. this.consent_rids = consent_rids;
  2861. this.ocrtags = ocrtags;
  2862. this.instcd = instcd;
  2863. }
  2864. }
  2865. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2866. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2867. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2868. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2869. public partial class updateCertifyCompleteResponse {
  2870. [System.ServiceModel.MessageBodyMemberAttribute(Name="updateCertifyCompleteResponse", Namespace="http://tempuri.org/", Order=0)]
  2871. public CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteResponseBody Body;
  2872. public updateCertifyCompleteResponse() {
  2873. }
  2874. public updateCertifyCompleteResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteResponseBody Body) {
  2875. this.Body = Body;
  2876. }
  2877. }
  2878. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2879. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2880. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2881. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2882. public partial class updateCertifyCompleteResponseBody {
  2883. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2884. public string updateCertifyCompleteResult;
  2885. public updateCertifyCompleteResponseBody() {
  2886. }
  2887. public updateCertifyCompleteResponseBody(string updateCertifyCompleteResult) {
  2888. this.updateCertifyCompleteResult = updateCertifyCompleteResult;
  2889. }
  2890. }
  2891. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2892. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2893. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2894. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2895. public partial class updatePrintHistoryRequest {
  2896. [System.ServiceModel.MessageBodyMemberAttribute(Name="updatePrintHistory", Namespace="http://tempuri.org/", Order=0)]
  2897. public CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryRequestBody Body;
  2898. public updatePrintHistoryRequest() {
  2899. }
  2900. public updatePrintHistoryRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryRequestBody Body) {
  2901. this.Body = Body;
  2902. }
  2903. }
  2904. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2905. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2906. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2907. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2908. public partial class updatePrintHistoryRequestBody {
  2909. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2910. public string pid;
  2911. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2912. public string ocrtag;
  2913. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  2914. public string instcd;
  2915. public updatePrintHistoryRequestBody() {
  2916. }
  2917. public updatePrintHistoryRequestBody(string pid, string ocrtag, string instcd) {
  2918. this.pid = pid;
  2919. this.ocrtag = ocrtag;
  2920. this.instcd = instcd;
  2921. }
  2922. }
  2923. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2924. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2925. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2926. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2927. public partial class updatePrintHistoryResponse {
  2928. [System.ServiceModel.MessageBodyMemberAttribute(Name="updatePrintHistoryResponse", Namespace="http://tempuri.org/", Order=0)]
  2929. public CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryResponseBody Body;
  2930. public updatePrintHistoryResponse() {
  2931. }
  2932. public updatePrintHistoryResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryResponseBody Body) {
  2933. this.Body = Body;
  2934. }
  2935. }
  2936. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2937. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2938. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2939. [System.Runtime.Serialization.DataContractAttribute()]
  2940. public partial class updatePrintHistoryResponseBody {
  2941. public updatePrintHistoryResponseBody() {
  2942. }
  2943. }
  2944. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2945. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2946. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2947. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2948. public partial class duplicateCertConsentRequest {
  2949. [System.ServiceModel.MessageBodyMemberAttribute(Name="duplicateCertConsent", Namespace="http://tempuri.org/", Order=0)]
  2950. public CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentRequestBody Body;
  2951. public duplicateCertConsentRequest() {
  2952. }
  2953. public duplicateCertConsentRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentRequestBody Body) {
  2954. this.Body = Body;
  2955. }
  2956. }
  2957. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2958. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2959. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2960. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2961. public partial class duplicateCertConsentRequestBody {
  2962. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2963. public string pid;
  2964. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
  2965. public string instcd;
  2966. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
  2967. public string formcd;
  2968. public duplicateCertConsentRequestBody() {
  2969. }
  2970. public duplicateCertConsentRequestBody(string pid, string instcd, string formcd) {
  2971. this.pid = pid;
  2972. this.instcd = instcd;
  2973. this.formcd = formcd;
  2974. }
  2975. }
  2976. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2977. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2978. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2979. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  2980. public partial class duplicateCertConsentResponse {
  2981. [System.ServiceModel.MessageBodyMemberAttribute(Name="duplicateCertConsentResponse", Namespace="http://tempuri.org/", Order=0)]
  2982. public CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentResponseBody Body;
  2983. public duplicateCertConsentResponse() {
  2984. }
  2985. public duplicateCertConsentResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentResponseBody Body) {
  2986. this.Body = Body;
  2987. }
  2988. }
  2989. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2990. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  2991. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  2992. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  2993. public partial class duplicateCertConsentResponseBody {
  2994. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  2995. public string duplicateCertConsentResult;
  2996. public duplicateCertConsentResponseBody() {
  2997. }
  2998. public duplicateCertConsentResponseBody(string duplicateCertConsentResult) {
  2999. this.duplicateCertConsentResult = duplicateCertConsentResult;
  3000. }
  3001. }
  3002. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3003. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3004. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3005. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3006. public partial class getUserTableGrantsRequest {
  3007. [System.ServiceModel.MessageBodyMemberAttribute(Name="getUserTableGrants", Namespace="http://tempuri.org/", Order=0)]
  3008. public CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsRequestBody Body;
  3009. public getUserTableGrantsRequest() {
  3010. }
  3011. public getUserTableGrantsRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsRequestBody Body) {
  3012. this.Body = Body;
  3013. }
  3014. }
  3015. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3016. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3017. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3018. [System.Runtime.Serialization.DataContractAttribute()]
  3019. public partial class getUserTableGrantsRequestBody {
  3020. public getUserTableGrantsRequestBody() {
  3021. }
  3022. }
  3023. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3024. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3025. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3026. [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
  3027. public partial class getUserTableGrantsResponse {
  3028. [System.ServiceModel.MessageBodyMemberAttribute(Name="getUserTableGrantsResponse", Namespace="http://tempuri.org/", Order=0)]
  3029. public CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsResponseBody Body;
  3030. public getUserTableGrantsResponse() {
  3031. }
  3032. public getUserTableGrantsResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsResponseBody Body) {
  3033. this.Body = Body;
  3034. }
  3035. }
  3036. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3037. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3038. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3039. [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
  3040. public partial class getUserTableGrantsResponseBody {
  3041. [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
  3042. public string getUserTableGrantsResult;
  3043. public getUserTableGrantsResponseBody() {
  3044. }
  3045. public getUserTableGrantsResponseBody(string getUserTableGrantsResult) {
  3046. this.getUserTableGrantsResult = getUserTableGrantsResult;
  3047. }
  3048. }
  3049. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3050. public interface ConsentSvcSoapChannel : CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap, System.ServiceModel.IClientChannel {
  3051. }
  3052. [System.Diagnostics.DebuggerStepThroughAttribute()]
  3053. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3054. public partial class ConsentSvcSoapClient : System.ServiceModel.ClientBase<CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap>, CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap {
  3055. public ConsentSvcSoapClient() {
  3056. }
  3057. public ConsentSvcSoapClient(string endpointConfigurationName) :
  3058. base(endpointConfigurationName) {
  3059. }
  3060. public ConsentSvcSoapClient(string endpointConfigurationName, string remoteAddress) :
  3061. base(endpointConfigurationName, remoteAddress) {
  3062. }
  3063. public ConsentSvcSoapClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
  3064. base(endpointConfigurationName, remoteAddress) {
  3065. }
  3066. public ConsentSvcSoapClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
  3067. base(binding, remoteAddress) {
  3068. }
  3069. public bool CheckWebService() {
  3070. return base.Channel.CheckWebService();
  3071. }
  3072. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3073. CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.getOcrType6Forms(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsRequest request) {
  3074. return base.Channel.getOcrType6Forms(request);
  3075. }
  3076. public CLIP.eForm.Consent.UI.ConsentSvcRef.ArrayOfString getOcrType6Forms(string dutinstcd) {
  3077. CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsRequest();
  3078. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsRequestBody();
  3079. inValue.Body.dutinstcd = dutinstcd;
  3080. CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).getOcrType6Forms(inValue);
  3081. return retVal.Body.getOcrType6FormsResult;
  3082. }
  3083. public bool CheckDatabaseConnection() {
  3084. return base.Channel.CheckDatabaseConnection();
  3085. }
  3086. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3087. CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetCategoryForDropdown(CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownRequest request) {
  3088. return base.Channel.GetCategoryForDropdown(request);
  3089. }
  3090. public CLIP.eForm.Consent.UI.ConsentSvcRef.CategoryForDropdownVO[] GetCategoryForDropdown() {
  3091. CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownRequest();
  3092. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownRequestBody();
  3093. CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetCategoryForDropdown(inValue);
  3094. return retVal.Body.GetCategoryForDropdownResult;
  3095. }
  3096. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3097. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentList(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListRequest request) {
  3098. return base.Channel.GetConsentList(request);
  3099. }
  3100. public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentList(string pid, string userId, string startDt, string endDt, string consentState, string instCd) {
  3101. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListRequest();
  3102. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListRequestBody();
  3103. inValue.Body.pid = pid;
  3104. inValue.Body.userId = userId;
  3105. inValue.Body.startDt = startDt;
  3106. inValue.Body.endDt = endDt;
  3107. inValue.Body.consentState = consentState;
  3108. inValue.Body.instCd = instCd;
  3109. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentList(inValue);
  3110. return retVal.Body.GetConsentListResult;
  3111. }
  3112. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3113. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentDateList(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListRequest request) {
  3114. return base.Channel.GetConsentDateList(request);
  3115. }
  3116. public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentDateList(
  3117. string srchDd,
  3118. string pid,
  3119. string userId,
  3120. string startDt,
  3121. string endDt,
  3122. string consentState,
  3123. string instCd,
  3124. string doctorId,
  3125. string ordDeptCd,
  3126. string patientState,
  3127. string ordType,
  3128. string myPatient,
  3129. string wardCd,
  3130. string drKind,
  3131. string srchYN,
  3132. string toDd,
  3133. string mainDr,
  3134. string mainDrChecked,
  3135. string supportBaseCd,
  3136. string supportDeptCd) {
  3137. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListRequest();
  3138. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListRequestBody();
  3139. inValue.Body.srchDd = srchDd;
  3140. inValue.Body.pid = pid;
  3141. inValue.Body.userId = userId;
  3142. inValue.Body.startDt = startDt;
  3143. inValue.Body.endDt = endDt;
  3144. inValue.Body.consentState = consentState;
  3145. inValue.Body.instCd = instCd;
  3146. inValue.Body.doctorId = doctorId;
  3147. inValue.Body.ordDeptCd = ordDeptCd;
  3148. inValue.Body.patientState = patientState;
  3149. inValue.Body.ordType = ordType;
  3150. inValue.Body.myPatient = myPatient;
  3151. inValue.Body.wardCd = wardCd;
  3152. inValue.Body.drKind = drKind;
  3153. inValue.Body.srchYN = srchYN;
  3154. inValue.Body.toDd = toDd;
  3155. inValue.Body.mainDr = mainDr;
  3156. inValue.Body.mainDrChecked = mainDrChecked;
  3157. inValue.Body.supportBaseCd = supportBaseCd;
  3158. inValue.Body.supportDeptCd = supportDeptCd;
  3159. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentDateList(inValue);
  3160. return retVal.Body.GetConsentDateListResult;
  3161. }
  3162. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3163. CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetPrescriptionConsentList(CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListRequest request) {
  3164. return base.Channel.GetPrescriptionConsentList(request);
  3165. }
  3166. public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetPrescriptionConsentList(string pid, string ordDd) {
  3167. CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListRequest();
  3168. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListRequestBody();
  3169. inValue.Body.pid = pid;
  3170. inValue.Body.ordDd = ordDd;
  3171. CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetPrescriptionConsentList(inValue);
  3172. return retVal.Body.GetPrescriptionConsentListResult;
  3173. }
  3174. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3175. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentBySearch(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchRequest request) {
  3176. return base.Channel.GetConsentBySearch(request);
  3177. }
  3178. public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentBySearch(string categoryId, string keyWord, string instCd, string toDay) {
  3179. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchRequest();
  3180. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchRequestBody();
  3181. inValue.Body.categoryId = categoryId;
  3182. inValue.Body.keyWord = keyWord;
  3183. inValue.Body.instCd = instCd;
  3184. inValue.Body.toDay = toDay;
  3185. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentBySearch(inValue);
  3186. return retVal.Body.GetConsentBySearchResult;
  3187. }
  3188. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3189. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentSetList(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListRequest request) {
  3190. return base.Channel.GetConsentSetList(request);
  3191. }
  3192. public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentSetList(string userId, string instCd, string toDay) {
  3193. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListRequest();
  3194. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListRequestBody();
  3195. inValue.Body.userId = userId;
  3196. inValue.Body.instCd = instCd;
  3197. inValue.Body.toDay = toDay;
  3198. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentSetList(inValue);
  3199. return retVal.Body.GetConsentSetListResult;
  3200. }
  3201. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3202. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentByFormcd(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdRequest request) {
  3203. return base.Channel.GetConsentByFormcd(request);
  3204. }
  3205. public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentByFormcd(string formCd, string instCd, string today) {
  3206. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdRequest();
  3207. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdRequestBody();
  3208. inValue.Body.formCd = formCd;
  3209. inValue.Body.instCd = instCd;
  3210. inValue.Body.today = today;
  3211. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentByFormcd(inValue);
  3212. return retVal.Body.GetConsentByFormcdResult;
  3213. }
  3214. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3215. CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.ReUseCertifyConsentFlag(CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagRequest request) {
  3216. return base.Channel.ReUseCertifyConsentFlag(request);
  3217. }
  3218. public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData ReUseCertifyConsentFlag(string pid, string ordDd, string cretNo, string ordType, string recDd, string userId) {
  3219. CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagRequest();
  3220. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagRequestBody();
  3221. inValue.Body.pid = pid;
  3222. inValue.Body.ordDd = ordDd;
  3223. inValue.Body.cretNo = cretNo;
  3224. inValue.Body.ordType = ordType;
  3225. inValue.Body.recDd = recDd;
  3226. inValue.Body.userId = userId;
  3227. CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).ReUseCertifyConsentFlag(inValue);
  3228. return retVal.Body.ReUseCertifyConsentFlagResult;
  3229. }
  3230. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3231. CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.getSaveAllFlag(CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagRequest request) {
  3232. return base.Channel.getSaveAllFlag(request);
  3233. }
  3234. public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData getSaveAllFlag(string instcd, string userid) {
  3235. CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagRequest();
  3236. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagRequestBody();
  3237. inValue.Body.instcd = instcd;
  3238. inValue.Body.userid = userid;
  3239. CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).getSaveAllFlag(inValue);
  3240. return retVal.Body.getSaveAllFlagResult;
  3241. }
  3242. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3243. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentImage(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageRequest request) {
  3244. return base.Channel.GetConsentImage(request);
  3245. }
  3246. public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentImageVO[] GetConsentImage(string consentMstRid) {
  3247. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageRequest();
  3248. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageRequestBody();
  3249. inValue.Body.consentMstRid = consentMstRid;
  3250. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentImage(inValue);
  3251. return retVal.Body.GetConsentImageResult;
  3252. }
  3253. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3254. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentAudioCount(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountRequest request) {
  3255. return base.Channel.GetConsentAudioCount(request);
  3256. }
  3257. public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData GetConsentAudioCount(string consentMstRid) {
  3258. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountRequest();
  3259. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountRequestBody();
  3260. inValue.Body.consentMstRid = consentMstRid;
  3261. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentAudioCount(inValue);
  3262. return retVal.Body.GetConsentAudioCountResult;
  3263. }
  3264. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3265. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentAudio(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioRequest request) {
  3266. return base.Channel.GetConsentAudio(request);
  3267. }
  3268. public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentImageVO[] GetConsentAudio(string consentMstRid) {
  3269. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioRequest();
  3270. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioRequestBody();
  3271. inValue.Body.consentMstRid = consentMstRid;
  3272. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentAudio(inValue);
  3273. return retVal.Body.GetConsentAudioResult;
  3274. }
  3275. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3276. CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.saveDelete(CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteRequest request) {
  3277. return base.Channel.saveDelete(request);
  3278. }
  3279. public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData saveDelete(string userId, string consentMstRid, string reasonForUseN) {
  3280. CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteRequest();
  3281. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteRequestBody();
  3282. inValue.Body.userId = userId;
  3283. inValue.Body.consentMstRid = consentMstRid;
  3284. inValue.Body.reasonForUseN = reasonForUseN;
  3285. CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).saveDelete(inValue);
  3286. return retVal.Body.saveDeleteResult;
  3287. }
  3288. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3289. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SaveTempData(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataRequest request) {
  3290. return base.Channel.SaveTempData(request);
  3291. }
  3292. public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveTempData(
  3293. string userId,
  3294. string userDeptCd,
  3295. string pid,
  3296. string formId,
  3297. string formCd,
  3298. string patientDeptCd,
  3299. string formXml,
  3300. string dataXml,
  3301. int consentMstRid,
  3302. int reWriteConsentMstRid,
  3303. string deviceType,
  3304. string deviceMacAddr,
  3305. string ordType,
  3306. string instCd,
  3307. string inDd,
  3308. string dSchDd,
  3309. string ward,
  3310. string roomCd,
  3311. string ocrTag,
  3312. int cretNo,
  3313. string mainDrId,
  3314. string formPageCnt,
  3315. string actionKind,
  3316. string opRsrvNo,
  3317. string consentState,
  3318. int orderNo,
  3319. string orderName,
  3320. string orderCd,
  3321. string audioFileJson,
  3322. string audioFileSize,
  3323. string imageFileJson,
  3324. string fileSize) {
  3325. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataRequest();
  3326. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataRequestBody();
  3327. inValue.Body.userId = userId;
  3328. inValue.Body.userDeptCd = userDeptCd;
  3329. inValue.Body.pid = pid;
  3330. inValue.Body.formId = formId;
  3331. inValue.Body.formCd = formCd;
  3332. inValue.Body.patientDeptCd = patientDeptCd;
  3333. inValue.Body.formXml = formXml;
  3334. inValue.Body.dataXml = dataXml;
  3335. inValue.Body.consentMstRid = consentMstRid;
  3336. inValue.Body.reWriteConsentMstRid = reWriteConsentMstRid;
  3337. inValue.Body.deviceType = deviceType;
  3338. inValue.Body.deviceMacAddr = deviceMacAddr;
  3339. inValue.Body.ordType = ordType;
  3340. inValue.Body.instCd = instCd;
  3341. inValue.Body.inDd = inDd;
  3342. inValue.Body.dSchDd = dSchDd;
  3343. inValue.Body.ward = ward;
  3344. inValue.Body.roomCd = roomCd;
  3345. inValue.Body.ocrTag = ocrTag;
  3346. inValue.Body.cretNo = cretNo;
  3347. inValue.Body.mainDrId = mainDrId;
  3348. inValue.Body.formPageCnt = formPageCnt;
  3349. inValue.Body.actionKind = actionKind;
  3350. inValue.Body.opRsrvNo = opRsrvNo;
  3351. inValue.Body.consentState = consentState;
  3352. inValue.Body.orderNo = orderNo;
  3353. inValue.Body.orderName = orderName;
  3354. inValue.Body.orderCd = orderCd;
  3355. inValue.Body.audioFileJson = audioFileJson;
  3356. inValue.Body.audioFileSize = audioFileSize;
  3357. inValue.Body.imageFileJson = imageFileJson;
  3358. inValue.Body.fileSize = fileSize;
  3359. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SaveTempData(inValue);
  3360. return retVal.Body.SaveTempDataResult;
  3361. }
  3362. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3363. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SaveAutoCompleteAll(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllRequest request) {
  3364. return base.Channel.SaveAutoCompleteAll(request);
  3365. }
  3366. public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveAutoCompleteAll(string userId, string userName, string macAddress, string json) {
  3367. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllRequest();
  3368. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllRequestBody();
  3369. inValue.Body.userId = userId;
  3370. inValue.Body.userName = userName;
  3371. inValue.Body.macAddress = macAddress;
  3372. inValue.Body.json = json;
  3373. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SaveAutoCompleteAll(inValue);
  3374. return retVal.Body.SaveAutoCompleteAllResult;
  3375. }
  3376. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3377. CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.imrTest(CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestRequest request) {
  3378. return base.Channel.imrTest(request);
  3379. }
  3380. public CLIP.eForm.Consent.UI.ConsentSvcRef.ImrData imrTest() {
  3381. CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestRequest();
  3382. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestRequestBody();
  3383. CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).imrTest(inValue);
  3384. return retVal.Body.imrTestResult;
  3385. }
  3386. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3387. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SaveCompleteAll(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllRequest request) {
  3388. return base.Channel.SaveCompleteAll(request);
  3389. }
  3390. public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveCompleteAll(
  3391. string userId,
  3392. string userDeptCd,
  3393. string pid,
  3394. string formId,
  3395. string formCd,
  3396. string patientDeptCd,
  3397. string formXml,
  3398. string dataXml,
  3399. int consentMstRid,
  3400. int reWriteConsentMstRid,
  3401. string deviceType,
  3402. string deviceMacAddr,
  3403. string ordType,
  3404. string instCd,
  3405. string inDd,
  3406. string dSchDd,
  3407. string ward,
  3408. string roomCd,
  3409. string ocrTag,
  3410. int cretNo,
  3411. string mainDrId,
  3412. string formPageCnt,
  3413. string actionKind,
  3414. string opRsrvNo,
  3415. string consentState,
  3416. int orderNo,
  3417. string orderName,
  3418. string orderCd,
  3419. string imageFileJson,
  3420. string fileSize,
  3421. string certResult,
  3422. string certTarget,
  3423. string audioFileJson,
  3424. string audioFileSize) {
  3425. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllRequest();
  3426. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllRequestBody();
  3427. inValue.Body.userId = userId;
  3428. inValue.Body.userDeptCd = userDeptCd;
  3429. inValue.Body.pid = pid;
  3430. inValue.Body.formId = formId;
  3431. inValue.Body.formCd = formCd;
  3432. inValue.Body.patientDeptCd = patientDeptCd;
  3433. inValue.Body.formXml = formXml;
  3434. inValue.Body.dataXml = dataXml;
  3435. inValue.Body.consentMstRid = consentMstRid;
  3436. inValue.Body.reWriteConsentMstRid = reWriteConsentMstRid;
  3437. inValue.Body.deviceType = deviceType;
  3438. inValue.Body.deviceMacAddr = deviceMacAddr;
  3439. inValue.Body.ordType = ordType;
  3440. inValue.Body.instCd = instCd;
  3441. inValue.Body.inDd = inDd;
  3442. inValue.Body.dSchDd = dSchDd;
  3443. inValue.Body.ward = ward;
  3444. inValue.Body.roomCd = roomCd;
  3445. inValue.Body.ocrTag = ocrTag;
  3446. inValue.Body.cretNo = cretNo;
  3447. inValue.Body.mainDrId = mainDrId;
  3448. inValue.Body.formPageCnt = formPageCnt;
  3449. inValue.Body.actionKind = actionKind;
  3450. inValue.Body.opRsrvNo = opRsrvNo;
  3451. inValue.Body.consentState = consentState;
  3452. inValue.Body.orderNo = orderNo;
  3453. inValue.Body.orderName = orderName;
  3454. inValue.Body.orderCd = orderCd;
  3455. inValue.Body.imageFileJson = imageFileJson;
  3456. inValue.Body.fileSize = fileSize;
  3457. inValue.Body.certResult = certResult;
  3458. inValue.Body.certTarget = certTarget;
  3459. inValue.Body.audioFileJson = audioFileJson;
  3460. inValue.Body.audioFileSize = audioFileSize;
  3461. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SaveCompleteAll(inValue);
  3462. return retVal.Body.SaveCompleteAllResult;
  3463. }
  3464. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3465. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentFormXml(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlRequest request) {
  3466. return base.Channel.GetConsentFormXml(request);
  3467. }
  3468. public string GetConsentFormXml(int consentMstRid) {
  3469. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlRequest();
  3470. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlRequestBody();
  3471. inValue.Body.consentMstRid = consentMstRid;
  3472. CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentFormXml(inValue);
  3473. return retVal.Body.GetConsentFormXmlResult;
  3474. }
  3475. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3476. CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SavePrintOut(CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutRequest request) {
  3477. return base.Channel.SavePrintOut(request);
  3478. }
  3479. public int SavePrintOut(
  3480. string userId,
  3481. string patientCode,
  3482. string clnDeptCode,
  3483. int formRid,
  3484. string formCd,
  3485. int consentMstRid,
  3486. int reissueConsentMstRid,
  3487. string formXml,
  3488. string dataXml,
  3489. string deviceType,
  3490. string deviceIdentNo,
  3491. string vistType,
  3492. string hosType,
  3493. string clnDate,
  3494. string ward,
  3495. string roomcd,
  3496. int orderNo,
  3497. string orderName,
  3498. string orderCd,
  3499. string ocrCode,
  3500. int cretno,
  3501. string createUserName,
  3502. string modifyUserName,
  3503. string mainDrId,
  3504. string userDeptCd,
  3505. string pageCnt,
  3506. string actKind,
  3507. string clientType,
  3508. string opRsrvNo) {
  3509. CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutRequest();
  3510. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutRequestBody();
  3511. inValue.Body.userId = userId;
  3512. inValue.Body.patientCode = patientCode;
  3513. inValue.Body.clnDeptCode = clnDeptCode;
  3514. inValue.Body.formRid = formRid;
  3515. inValue.Body.formCd = formCd;
  3516. inValue.Body.consentMstRid = consentMstRid;
  3517. inValue.Body.reissueConsentMstRid = reissueConsentMstRid;
  3518. inValue.Body.formXml = formXml;
  3519. inValue.Body.dataXml = dataXml;
  3520. inValue.Body.deviceType = deviceType;
  3521. inValue.Body.deviceIdentNo = deviceIdentNo;
  3522. inValue.Body.vistType = vistType;
  3523. inValue.Body.hosType = hosType;
  3524. inValue.Body.clnDate = clnDate;
  3525. inValue.Body.ward = ward;
  3526. inValue.Body.roomcd = roomcd;
  3527. inValue.Body.orderNo = orderNo;
  3528. inValue.Body.orderName = orderName;
  3529. inValue.Body.orderCd = orderCd;
  3530. inValue.Body.ocrCode = ocrCode;
  3531. inValue.Body.cretno = cretno;
  3532. inValue.Body.createUserName = createUserName;
  3533. inValue.Body.modifyUserName = modifyUserName;
  3534. inValue.Body.mainDrId = mainDrId;
  3535. inValue.Body.userDeptCd = userDeptCd;
  3536. inValue.Body.pageCnt = pageCnt;
  3537. inValue.Body.actKind = actKind;
  3538. inValue.Body.clientType = clientType;
  3539. inValue.Body.opRsrvNo = opRsrvNo;
  3540. CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SavePrintOut(inValue);
  3541. return retVal.Body.SavePrintOutResult;
  3542. }
  3543. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3544. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SaveMedicalHistory(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryRequest request) {
  3545. return base.Channel.SaveMedicalHistory(request);
  3546. }
  3547. public string SaveMedicalHistory(
  3548. string patientCode,
  3549. string clnDate,
  3550. string bp,
  3551. string dm,
  3552. string heart,
  3553. string kidney,
  3554. string respiration,
  3555. string hx,
  3556. string allergy,
  3557. string drug,
  3558. string smoking,
  3559. string idio,
  3560. string nacrotics,
  3561. string airway,
  3562. string hemorrhage,
  3563. string status_etc,
  3564. string userId) {
  3565. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryRequest();
  3566. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryRequestBody();
  3567. inValue.Body.patientCode = patientCode;
  3568. inValue.Body.clnDate = clnDate;
  3569. inValue.Body.bp = bp;
  3570. inValue.Body.dm = dm;
  3571. inValue.Body.heart = heart;
  3572. inValue.Body.kidney = kidney;
  3573. inValue.Body.respiration = respiration;
  3574. inValue.Body.hx = hx;
  3575. inValue.Body.allergy = allergy;
  3576. inValue.Body.drug = drug;
  3577. inValue.Body.smoking = smoking;
  3578. inValue.Body.idio = idio;
  3579. inValue.Body.nacrotics = nacrotics;
  3580. inValue.Body.airway = airway;
  3581. inValue.Body.hemorrhage = hemorrhage;
  3582. inValue.Body.status_etc = status_etc;
  3583. inValue.Body.userId = userId;
  3584. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SaveMedicalHistory(inValue);
  3585. return retVal.Body.SaveMedicalHistoryResult;
  3586. }
  3587. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3588. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SaveImageUploadInfo(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoRequest request) {
  3589. return base.Channel.SaveImageUploadInfo(request);
  3590. }
  3591. public int SaveImageUploadInfo(string consentState, string imageFileName, int consentMstRid, string userId, int formRid) {
  3592. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoRequest();
  3593. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoRequestBody();
  3594. inValue.Body.consentState = consentState;
  3595. inValue.Body.imageFileName = imageFileName;
  3596. inValue.Body.consentMstRid = consentMstRid;
  3597. inValue.Body.userId = userId;
  3598. inValue.Body.formRid = formRid;
  3599. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SaveImageUploadInfo(inValue);
  3600. return retVal.Body.SaveImageUploadInfoResult;
  3601. }
  3602. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3603. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SaveImageSignInfo(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoRequest request) {
  3604. return base.Channel.SaveImageSignInfo(request);
  3605. }
  3606. public void SaveImageSignInfo(string consentState, int consentMstRid, int consentImageRid, string userId, string certTarget, string sCertResult) {
  3607. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoRequest();
  3608. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoRequestBody();
  3609. inValue.Body.consentState = consentState;
  3610. inValue.Body.consentMstRid = consentMstRid;
  3611. inValue.Body.consentImageRid = consentImageRid;
  3612. inValue.Body.userId = userId;
  3613. inValue.Body.certTarget = certTarget;
  3614. inValue.Body.sCertResult = sCertResult;
  3615. CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SaveImageSignInfo(inValue);
  3616. }
  3617. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3618. CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.CheckConsentState(CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateRequest request) {
  3619. return base.Channel.CheckConsentState(request);
  3620. }
  3621. public int CheckConsentState(int consentmstrid, string consent_state) {
  3622. CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateRequest();
  3623. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateRequestBody();
  3624. inValue.Body.consentmstrid = consentmstrid;
  3625. inValue.Body.consent_state = consent_state;
  3626. CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).CheckConsentState(inValue);
  3627. return retVal.Body.CheckConsentStateResult;
  3628. }
  3629. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3630. CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.getOcrString(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringRequest request) {
  3631. return base.Channel.getOcrString(request);
  3632. }
  3633. public string getOcrString(string formCd, string dutinstcd) {
  3634. CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringRequest();
  3635. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringRequestBody();
  3636. inValue.Body.formCd = formCd;
  3637. inValue.Body.dutinstcd = dutinstcd;
  3638. CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).getOcrString(inValue);
  3639. return retVal.Body.getOcrStringResult;
  3640. }
  3641. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3642. CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.getCertUseYn(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnRequest request) {
  3643. return base.Channel.getCertUseYn(request);
  3644. }
  3645. public string getCertUseYn(string formCd, string dutinstcd) {
  3646. CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnRequest();
  3647. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnRequestBody();
  3648. inValue.Body.formCd = formCd;
  3649. inValue.Body.dutinstcd = dutinstcd;
  3650. CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).getCertUseYn(inValue);
  3651. return retVal.Body.getCertUseYnResult;
  3652. }
  3653. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3654. CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.getCertUseYnData(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataRequest request) {
  3655. return base.Channel.getCertUseYnData(request);
  3656. }
  3657. public string getCertUseYnData(string formCd, string dutinstcd) {
  3658. CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataRequest();
  3659. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataRequestBody();
  3660. inValue.Body.formCd = formCd;
  3661. inValue.Body.dutinstcd = dutinstcd;
  3662. CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).getCertUseYnData(inValue);
  3663. return retVal.Body.getCertUseYnDataResult;
  3664. }
  3665. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3666. CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.getDualViewMode(CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeRequest request) {
  3667. return base.Channel.getDualViewMode(request);
  3668. }
  3669. public string getDualViewMode(string dutinstcd, string ipaddr) {
  3670. CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeRequest();
  3671. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeRequestBody();
  3672. inValue.Body.dutinstcd = dutinstcd;
  3673. inValue.Body.ipaddr = ipaddr;
  3674. CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).getDualViewMode(inValue);
  3675. return retVal.Body.getDualViewModeResult;
  3676. }
  3677. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3678. CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.updateCertifyComplete(CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteRequest request) {
  3679. return base.Channel.updateCertifyComplete(request);
  3680. }
  3681. public string updateCertifyComplete(string consent_rids, string ocrtags, string instcd) {
  3682. CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteRequest();
  3683. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteRequestBody();
  3684. inValue.Body.consent_rids = consent_rids;
  3685. inValue.Body.ocrtags = ocrtags;
  3686. inValue.Body.instcd = instcd;
  3687. CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).updateCertifyComplete(inValue);
  3688. return retVal.Body.updateCertifyCompleteResult;
  3689. }
  3690. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3691. CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.updatePrintHistory(CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryRequest request) {
  3692. return base.Channel.updatePrintHistory(request);
  3693. }
  3694. public void updatePrintHistory(string pid, string ocrtag, string instcd) {
  3695. CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryRequest();
  3696. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryRequestBody();
  3697. inValue.Body.pid = pid;
  3698. inValue.Body.ocrtag = ocrtag;
  3699. inValue.Body.instcd = instcd;
  3700. CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).updatePrintHistory(inValue);
  3701. }
  3702. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3703. CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.duplicateCertConsent(CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentRequest request) {
  3704. return base.Channel.duplicateCertConsent(request);
  3705. }
  3706. public string duplicateCertConsent(string pid, string instcd, string formcd) {
  3707. CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentRequest();
  3708. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentRequestBody();
  3709. inValue.Body.pid = pid;
  3710. inValue.Body.instcd = instcd;
  3711. inValue.Body.formcd = formcd;
  3712. CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).duplicateCertConsent(inValue);
  3713. return retVal.Body.duplicateCertConsentResult;
  3714. }
  3715. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  3716. CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.getUserTableGrants(CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsRequest request) {
  3717. return base.Channel.getUserTableGrants(request);
  3718. }
  3719. public string getUserTableGrants() {
  3720. CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsRequest();
  3721. inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsRequestBody();
  3722. CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).getUserTableGrants(inValue);
  3723. return retVal.Body.getUserTableGrantsResult;
  3724. }
  3725. }
  3726. }