123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // 이 코드는 도구를 사용하여 생성되었습니다.
- // 런타임 버전:4.0.30319.42000
- //
- // 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면
- // 이러한 변경 내용이 손실됩니다.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace CLIP.eForm.Consent.UI.ConsentSvcRef {
- using System.Runtime.Serialization;
- using System;
-
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
- [System.Runtime.Serialization.CollectionDataContractAttribute(Name="ArrayOfString", Namespace="http://tempuri.org/", ItemName="string")]
- [System.SerializableAttribute()]
- public class ArrayOfString : System.Collections.Generic.List<string> {
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
- [System.Runtime.Serialization.DataContractAttribute(Name="CategoryForDropdownVO", Namespace="http://tempuri.org/")]
- [System.SerializableAttribute()]
- public partial class CategoryForDropdownVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
-
- [System.NonSerializedAttribute()]
- private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string CategoryTypeField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string CategoryIdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string CategoryNameField;
-
- [global::System.ComponentModel.BrowsableAttribute(false)]
- public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
- get {
- return this.extensionDataField;
- }
- set {
- this.extensionDataField = value;
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
- public string CategoryType {
- get {
- return this.CategoryTypeField;
- }
- set {
- if ((object.ReferenceEquals(this.CategoryTypeField, value) != true)) {
- this.CategoryTypeField = value;
- this.RaisePropertyChanged("CategoryType");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string CategoryId {
- get {
- return this.CategoryIdField;
- }
- set {
- if ((object.ReferenceEquals(this.CategoryIdField, value) != true)) {
- this.CategoryIdField = value;
- this.RaisePropertyChanged("CategoryId");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string CategoryName {
- get {
- return this.CategoryNameField;
- }
- set {
- if ((object.ReferenceEquals(this.CategoryNameField, value) != true)) {
- this.CategoryNameField = value;
- this.RaisePropertyChanged("CategoryName");
- }
- }
- }
-
- public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
-
- protected void RaisePropertyChanged(string propertyName) {
- System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
- if ((propertyChanged != null)) {
- propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
- }
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
- [System.Runtime.Serialization.DataContractAttribute(Name="ConsentVO", Namespace="http://tempuri.org/")]
- [System.SerializableAttribute()]
- public partial class ConsentVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
-
- [System.NonSerializedAttribute()]
- private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
-
- private int consentMstRidField;
-
- private int formIdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string formCdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string formNameField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string consentStateField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string consentStateDispField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string ocrTagField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string ocrTagYNField;
-
- private int prntCntField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string prntOnlyField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string formPrintNameField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string userDrFlagField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string linkFormCdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string jinjeongCdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string DrOnlyField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string certUseYnField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string instCdField;
-
- private int cretnoField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string pidField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string patientNameField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string ordtypeField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string clnDeptCdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string clnDeptNmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string clnDateField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string mainDrIdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string wardCdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string roomCdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string opDiagNameField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string opNameField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string opRsrvNoField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string createUserIdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string createDateTimeField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string createUserNameField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string modifyUserIdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string modifyUserNameField;
-
- [global::System.ComponentModel.BrowsableAttribute(false)]
- public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
- get {
- return this.extensionDataField;
- }
- set {
- this.extensionDataField = value;
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
- public int consentMstRid {
- get {
- return this.consentMstRidField;
- }
- set {
- if ((this.consentMstRidField.Equals(value) != true)) {
- this.consentMstRidField = value;
- this.RaisePropertyChanged("consentMstRid");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
- public int formId {
- get {
- return this.formIdField;
- }
- set {
- if ((this.formIdField.Equals(value) != true)) {
- this.formIdField = value;
- this.RaisePropertyChanged("formId");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string formCd {
- get {
- return this.formCdField;
- }
- set {
- if ((object.ReferenceEquals(this.formCdField, value) != true)) {
- this.formCdField = value;
- this.RaisePropertyChanged("formCd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string formName {
- get {
- return this.formNameField;
- }
- set {
- if ((object.ReferenceEquals(this.formNameField, value) != true)) {
- this.formNameField = value;
- this.RaisePropertyChanged("formName");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string consentState {
- get {
- return this.consentStateField;
- }
- set {
- if ((object.ReferenceEquals(this.consentStateField, value) != true)) {
- this.consentStateField = value;
- this.RaisePropertyChanged("consentState");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string consentStateDisp {
- get {
- return this.consentStateDispField;
- }
- set {
- if ((object.ReferenceEquals(this.consentStateDispField, value) != true)) {
- this.consentStateDispField = value;
- this.RaisePropertyChanged("consentStateDisp");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string ocrTag {
- get {
- return this.ocrTagField;
- }
- set {
- if ((object.ReferenceEquals(this.ocrTagField, value) != true)) {
- this.ocrTagField = value;
- this.RaisePropertyChanged("ocrTag");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string ocrTagYN {
- get {
- return this.ocrTagYNField;
- }
- set {
- if ((object.ReferenceEquals(this.ocrTagYNField, value) != true)) {
- this.ocrTagYNField = value;
- this.RaisePropertyChanged("ocrTagYN");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=8)]
- public int prntCnt {
- get {
- return this.prntCntField;
- }
- set {
- if ((this.prntCntField.Equals(value) != true)) {
- this.prntCntField = value;
- this.RaisePropertyChanged("prntCnt");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
- public string prntOnly {
- get {
- return this.prntOnlyField;
- }
- set {
- if ((object.ReferenceEquals(this.prntOnlyField, value) != true)) {
- this.prntOnlyField = value;
- this.RaisePropertyChanged("prntOnly");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
- public string formPrintName {
- get {
- return this.formPrintNameField;
- }
- set {
- if ((object.ReferenceEquals(this.formPrintNameField, value) != true)) {
- this.formPrintNameField = value;
- this.RaisePropertyChanged("formPrintName");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
- public string userDrFlag {
- get {
- return this.userDrFlagField;
- }
- set {
- if ((object.ReferenceEquals(this.userDrFlagField, value) != true)) {
- this.userDrFlagField = value;
- this.RaisePropertyChanged("userDrFlag");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
- public string linkFormCd {
- get {
- return this.linkFormCdField;
- }
- set {
- if ((object.ReferenceEquals(this.linkFormCdField, value) != true)) {
- this.linkFormCdField = value;
- this.RaisePropertyChanged("linkFormCd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
- public string jinjeongCd {
- get {
- return this.jinjeongCdField;
- }
- set {
- if ((object.ReferenceEquals(this.jinjeongCdField, value) != true)) {
- this.jinjeongCdField = value;
- this.RaisePropertyChanged("jinjeongCd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
- public string DrOnly {
- get {
- return this.DrOnlyField;
- }
- set {
- if ((object.ReferenceEquals(this.DrOnlyField, value) != true)) {
- this.DrOnlyField = value;
- this.RaisePropertyChanged("DrOnly");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
- public string certUseYn {
- get {
- return this.certUseYnField;
- }
- set {
- if ((object.ReferenceEquals(this.certUseYnField, value) != true)) {
- this.certUseYnField = value;
- this.RaisePropertyChanged("certUseYn");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=16)]
- public string instCd {
- get {
- return this.instCdField;
- }
- set {
- if ((object.ReferenceEquals(this.instCdField, value) != true)) {
- this.instCdField = value;
- this.RaisePropertyChanged("instCd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=17)]
- public int cretno {
- get {
- return this.cretnoField;
- }
- set {
- if ((this.cretnoField.Equals(value) != true)) {
- this.cretnoField = value;
- this.RaisePropertyChanged("cretno");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=18)]
- public string pid {
- get {
- return this.pidField;
- }
- set {
- if ((object.ReferenceEquals(this.pidField, value) != true)) {
- this.pidField = value;
- this.RaisePropertyChanged("pid");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=19)]
- public string patientName {
- get {
- return this.patientNameField;
- }
- set {
- if ((object.ReferenceEquals(this.patientNameField, value) != true)) {
- this.patientNameField = value;
- this.RaisePropertyChanged("patientName");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=20)]
- public string ordtype {
- get {
- return this.ordtypeField;
- }
- set {
- if ((object.ReferenceEquals(this.ordtypeField, value) != true)) {
- this.ordtypeField = value;
- this.RaisePropertyChanged("ordtype");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=21)]
- public string clnDeptCd {
- get {
- return this.clnDeptCdField;
- }
- set {
- if ((object.ReferenceEquals(this.clnDeptCdField, value) != true)) {
- this.clnDeptCdField = value;
- this.RaisePropertyChanged("clnDeptCd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=22)]
- public string clnDeptNm {
- get {
- return this.clnDeptNmField;
- }
- set {
- if ((object.ReferenceEquals(this.clnDeptNmField, value) != true)) {
- this.clnDeptNmField = value;
- this.RaisePropertyChanged("clnDeptNm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=23)]
- public string clnDate {
- get {
- return this.clnDateField;
- }
- set {
- if ((object.ReferenceEquals(this.clnDateField, value) != true)) {
- this.clnDateField = value;
- this.RaisePropertyChanged("clnDate");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=24)]
- public string mainDrId {
- get {
- return this.mainDrIdField;
- }
- set {
- if ((object.ReferenceEquals(this.mainDrIdField, value) != true)) {
- this.mainDrIdField = value;
- this.RaisePropertyChanged("mainDrId");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=25)]
- public string wardCd {
- get {
- return this.wardCdField;
- }
- set {
- if ((object.ReferenceEquals(this.wardCdField, value) != true)) {
- this.wardCdField = value;
- this.RaisePropertyChanged("wardCd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=26)]
- public string roomCd {
- get {
- return this.roomCdField;
- }
- set {
- if ((object.ReferenceEquals(this.roomCdField, value) != true)) {
- this.roomCdField = value;
- this.RaisePropertyChanged("roomCd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=27)]
- public string opDiagName {
- get {
- return this.opDiagNameField;
- }
- set {
- if ((object.ReferenceEquals(this.opDiagNameField, value) != true)) {
- this.opDiagNameField = value;
- this.RaisePropertyChanged("opDiagName");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=28)]
- public string opName {
- get {
- return this.opNameField;
- }
- set {
- if ((object.ReferenceEquals(this.opNameField, value) != true)) {
- this.opNameField = value;
- this.RaisePropertyChanged("opName");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=29)]
- public string opRsrvNo {
- get {
- return this.opRsrvNoField;
- }
- set {
- if ((object.ReferenceEquals(this.opRsrvNoField, value) != true)) {
- this.opRsrvNoField = value;
- this.RaisePropertyChanged("opRsrvNo");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=30)]
- public string createUserId {
- get {
- return this.createUserIdField;
- }
- set {
- if ((object.ReferenceEquals(this.createUserIdField, value) != true)) {
- this.createUserIdField = value;
- this.RaisePropertyChanged("createUserId");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=31)]
- public string createDateTime {
- get {
- return this.createDateTimeField;
- }
- set {
- if ((object.ReferenceEquals(this.createDateTimeField, value) != true)) {
- this.createDateTimeField = value;
- this.RaisePropertyChanged("createDateTime");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=32)]
- public string createUserName {
- get {
- return this.createUserNameField;
- }
- set {
- if ((object.ReferenceEquals(this.createUserNameField, value) != true)) {
- this.createUserNameField = value;
- this.RaisePropertyChanged("createUserName");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=33)]
- public string modifyUserId {
- get {
- return this.modifyUserIdField;
- }
- set {
- if ((object.ReferenceEquals(this.modifyUserIdField, value) != true)) {
- this.modifyUserIdField = value;
- this.RaisePropertyChanged("modifyUserId");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=34)]
- public string modifyUserName {
- get {
- return this.modifyUserNameField;
- }
- set {
- if ((object.ReferenceEquals(this.modifyUserNameField, value) != true)) {
- this.modifyUserNameField = value;
- this.RaisePropertyChanged("modifyUserName");
- }
- }
- }
-
- public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
-
- protected void RaisePropertyChanged(string propertyName) {
- System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
- if ((propertyChanged != null)) {
- propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
- }
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
- [System.Runtime.Serialization.DataContractAttribute(Name="ConsentImageVO", Namespace="http://tempuri.org/")]
- [System.SerializableAttribute()]
- public partial class ConsentImageVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
-
- [System.NonSerializedAttribute()]
- private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
-
- private int ConsentMstRidField;
-
- private int ConsentImageRidField;
-
- private int FormRidField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string ImagePathField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string ImageFilenameField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string CompleteYnField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string CreateUserIdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string CreateDatetimeField;
-
- [global::System.ComponentModel.BrowsableAttribute(false)]
- public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
- get {
- return this.extensionDataField;
- }
- set {
- this.extensionDataField = value;
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
- public int ConsentMstRid {
- get {
- return this.ConsentMstRidField;
- }
- set {
- if ((this.ConsentMstRidField.Equals(value) != true)) {
- this.ConsentMstRidField = value;
- this.RaisePropertyChanged("ConsentMstRid");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=1)]
- public int ConsentImageRid {
- get {
- return this.ConsentImageRidField;
- }
- set {
- if ((this.ConsentImageRidField.Equals(value) != true)) {
- this.ConsentImageRidField = value;
- this.RaisePropertyChanged("ConsentImageRid");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=2)]
- public int FormRid {
- get {
- return this.FormRidField;
- }
- set {
- if ((this.FormRidField.Equals(value) != true)) {
- this.FormRidField = value;
- this.RaisePropertyChanged("FormRid");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string ImagePath {
- get {
- return this.ImagePathField;
- }
- set {
- if ((object.ReferenceEquals(this.ImagePathField, value) != true)) {
- this.ImagePathField = value;
- this.RaisePropertyChanged("ImagePath");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string ImageFilename {
- get {
- return this.ImageFilenameField;
- }
- set {
- if ((object.ReferenceEquals(this.ImageFilenameField, value) != true)) {
- this.ImageFilenameField = value;
- this.RaisePropertyChanged("ImageFilename");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string CompleteYn {
- get {
- return this.CompleteYnField;
- }
- set {
- if ((object.ReferenceEquals(this.CompleteYnField, value) != true)) {
- this.CompleteYnField = value;
- this.RaisePropertyChanged("CompleteYn");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string CreateUserId {
- get {
- return this.CreateUserIdField;
- }
- set {
- if ((object.ReferenceEquals(this.CreateUserIdField, value) != true)) {
- this.CreateUserIdField = value;
- this.RaisePropertyChanged("CreateUserId");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string CreateDatetime {
- get {
- return this.CreateDatetimeField;
- }
- set {
- if ((object.ReferenceEquals(this.CreateDatetimeField, value) != true)) {
- this.CreateDatetimeField = value;
- this.RaisePropertyChanged("CreateDatetime");
- }
- }
- }
-
- public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
-
- protected void RaisePropertyChanged(string propertyName) {
- System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
- if ((propertyChanged != null)) {
- propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
- }
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
- [System.Runtime.Serialization.DataContractAttribute(Name="SingleReturnData", Namespace="http://tempuri.org/")]
- [System.SerializableAttribute()]
- public partial class SingleReturnData : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
-
- [System.NonSerializedAttribute()]
- private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string responseDataField;
-
- [global::System.ComponentModel.BrowsableAttribute(false)]
- public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
- get {
- return this.extensionDataField;
- }
- set {
- this.extensionDataField = value;
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
- public string responseData {
- get {
- return this.responseDataField;
- }
- set {
- if ((object.ReferenceEquals(this.responseDataField, value) != true)) {
- this.responseDataField = value;
- this.RaisePropertyChanged("responseData");
- }
- }
- }
-
- public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
-
- protected void RaisePropertyChanged(string propertyName) {
- System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
- if ((propertyChanged != null)) {
- propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
- }
- }
- }
-
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ServiceModel.ServiceContractAttribute(ConfigurationName="ConsentSvcRef.ConsentSvcSoap")]
- public interface ConsentSvcSoap {
-
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/CheckWebService", ReplyAction="*")]
- bool CheckWebService();
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 dutinstcd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getOcrType6Forms", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsResponse getOcrType6Forms(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsRequest request);
-
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/CheckDatabaseConnection", ReplyAction="*")]
- bool CheckDatabaseConnection();
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 instCd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetCategoryForDropdown", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownResponse GetCategoryForDropdown(CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 username이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentListByUserName", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListByUserNameResponse GetConsentListByUserName(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListByUserNameRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 patientCode이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentList", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListResponse GetConsentList(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 categoryId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentBySearch", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchResponse GetConsentBySearch(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 formCd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentByFormcd", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdResponse GetConsentByFormcd(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 consentMstRid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentImage", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageResponse GetConsentImage(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SaveTempDataNew", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataNewResponse SaveTempDataNew(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataNewRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SaveTempData", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataResponse SaveTempData(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SaveComplete", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteResponse SaveComplete(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SaveCompleteAllNew", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllNewResponse SaveCompleteAllNew(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllNewRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SaveCompleteAll", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllResponse SaveCompleteAll(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SaveDelete", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveDeleteResponse SaveDelete(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveDeleteRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SavePrintOut", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutResponse SavePrintOut(CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 patientCode이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SaveMedicalHistory", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryResponse SaveMedicalHistory(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 consentState이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SaveImageUploadInfo", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoResponse SaveImageUploadInfo(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 consentState이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SaveImageSignInfo", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoResponse SaveImageSignInfo(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 consent_state이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/CheckConsentState", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateResponse CheckConsentState(CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 instcd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getAgmtConsentData", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getAgmtConsentDataResponse getAgmtConsentData(CLIP.eForm.Consent.UI.ConsentSvcRef.getAgmtConsentDataRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 formCd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getOcrString", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringResponse getOcrString(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 formCd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getCertUseYn", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnResponse getCertUseYn(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 formCd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getCertUseYnData", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataResponse getCertUseYnData(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 dutinstcd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getDualViewMode", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeResponse getDualViewMode(CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 consent_rids이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/updateCertifyComplete", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteResponse updateCertifyComplete(CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 pid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/updatePrintHistory", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryResponse updatePrintHistory(CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 pid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/duplicateCertConsent", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentResponse duplicateCertConsent(CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 instcd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/checkJinJeongDocument", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.checkJinJeongDocumentResponse checkJinJeongDocument(CLIP.eForm.Consent.UI.ConsentSvcRef.checkJinJeongDocumentRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 instcd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getLinkedAnstDocument", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getLinkedAnstDocumentResponse getLinkedAnstDocument(CLIP.eForm.Consent.UI.ConsentSvcRef.getLinkedAnstDocumentRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 instcd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/checkOperationDocument", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.checkOperationDocumentResponse checkOperationDocument(CLIP.eForm.Consent.UI.ConsentSvcRef.checkOperationDocumentRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 GetConsentFormXmlResult이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentFormXml", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlResponse GetConsentFormXml(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlRequest request);
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getOcrType6FormsRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getOcrType6Forms", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsRequestBody Body;
-
- public getOcrType6FormsRequest() {
- }
-
- public getOcrType6FormsRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getOcrType6FormsRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string dutinstcd;
-
- public getOcrType6FormsRequestBody() {
- }
-
- public getOcrType6FormsRequestBody(string dutinstcd) {
- this.dutinstcd = dutinstcd;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getOcrType6FormsResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getOcrType6FormsResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsResponseBody Body;
-
- public getOcrType6FormsResponse() {
- }
-
- public getOcrType6FormsResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getOcrType6FormsResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ArrayOfString getOcrType6FormsResult;
-
- public getOcrType6FormsResponseBody() {
- }
-
- public getOcrType6FormsResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ArrayOfString getOcrType6FormsResult) {
- this.getOcrType6FormsResult = getOcrType6FormsResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetCategoryForDropdownRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetCategoryForDropdown", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownRequestBody Body;
-
- public GetCategoryForDropdownRequest() {
- }
-
- public GetCategoryForDropdownRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetCategoryForDropdownRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string instCd;
-
- public GetCategoryForDropdownRequestBody() {
- }
-
- public GetCategoryForDropdownRequestBody(string instCd) {
- this.instCd = instCd;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetCategoryForDropdownResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetCategoryForDropdownResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownResponseBody Body;
-
- public GetCategoryForDropdownResponse() {
- }
-
- public GetCategoryForDropdownResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetCategoryForDropdownResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.CategoryForDropdownVO[] GetCategoryForDropdownResult;
-
- public GetCategoryForDropdownResponseBody() {
- }
-
- public GetCategoryForDropdownResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.CategoryForDropdownVO[] GetCategoryForDropdownResult) {
- this.GetCategoryForDropdownResult = GetCategoryForDropdownResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentListByUserNameRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentListByUserName", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListByUserNameRequestBody Body;
-
- public GetConsentListByUserNameRequest() {
- }
-
- public GetConsentListByUserNameRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListByUserNameRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetConsentListByUserNameRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string username;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string startDt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string endDt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string consetState;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string dutinstcd;
-
- public GetConsentListByUserNameRequestBody() {
- }
-
- public GetConsentListByUserNameRequestBody(string username, string startDt, string endDt, string consetState, string dutinstcd) {
- this.username = username;
- this.startDt = startDt;
- this.endDt = endDt;
- this.consetState = consetState;
- this.dutinstcd = dutinstcd;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentListByUserNameResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentListByUserNameResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListByUserNameResponseBody Body;
-
- public GetConsentListByUserNameResponse() {
- }
-
- public GetConsentListByUserNameResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListByUserNameResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetConsentListByUserNameResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentListByUserNameResult;
-
- public GetConsentListByUserNameResponseBody() {
- }
-
- public GetConsentListByUserNameResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentListByUserNameResult) {
- this.GetConsentListByUserNameResult = GetConsentListByUserNameResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentListRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentList", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListRequestBody Body;
-
- public GetConsentListRequest() {
- }
-
- public GetConsentListRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetConsentListRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string patientCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string startDt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string endDt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string consentState;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string instCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string userId;
-
- public GetConsentListRequestBody() {
- }
-
- public GetConsentListRequestBody(string patientCode, string startDt, string endDt, string consentState, string instCd, string userId) {
- this.patientCode = patientCode;
- this.startDt = startDt;
- this.endDt = endDt;
- this.consentState = consentState;
- this.instCd = instCd;
- this.userId = userId;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentListResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentListResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListResponseBody Body;
-
- public GetConsentListResponse() {
- }
-
- public GetConsentListResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetConsentListResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentListResult;
-
- public GetConsentListResponseBody() {
- }
-
- public GetConsentListResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentListResult) {
- this.GetConsentListResult = GetConsentListResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentBySearchRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentBySearch", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchRequestBody Body;
-
- public GetConsentBySearchRequest() {
- }
-
- public GetConsentBySearchRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetConsentBySearchRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string categoryId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string keyWord;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string instCd;
-
- public GetConsentBySearchRequestBody() {
- }
-
- public GetConsentBySearchRequestBody(string categoryId, string keyWord, string instCd) {
- this.categoryId = categoryId;
- this.keyWord = keyWord;
- this.instCd = instCd;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentBySearchResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentBySearchResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchResponseBody Body;
-
- public GetConsentBySearchResponse() {
- }
-
- public GetConsentBySearchResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetConsentBySearchResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentBySearchResult;
-
- public GetConsentBySearchResponseBody() {
- }
-
- public GetConsentBySearchResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentBySearchResult) {
- this.GetConsentBySearchResult = GetConsentBySearchResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentByFormcdRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentByFormcd", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdRequestBody Body;
-
- public GetConsentByFormcdRequest() {
- }
-
- public GetConsentByFormcdRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetConsentByFormcdRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string formCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string instCd;
-
- public GetConsentByFormcdRequestBody() {
- }
-
- public GetConsentByFormcdRequestBody(string formCd, string instCd) {
- this.formCd = formCd;
- this.instCd = instCd;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentByFormcdResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentByFormcdResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdResponseBody Body;
-
- public GetConsentByFormcdResponse() {
- }
-
- public GetConsentByFormcdResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetConsentByFormcdResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO GetConsentByFormcdResult;
-
- public GetConsentByFormcdResponseBody() {
- }
-
- public GetConsentByFormcdResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO GetConsentByFormcdResult) {
- this.GetConsentByFormcdResult = GetConsentByFormcdResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentImageRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentImage", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageRequestBody Body;
-
- public GetConsentImageRequest() {
- }
-
- public GetConsentImageRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetConsentImageRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string consentMstRid;
-
- public GetConsentImageRequestBody() {
- }
-
- public GetConsentImageRequestBody(string consentMstRid) {
- this.consentMstRid = consentMstRid;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentImageResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentImageResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageResponseBody Body;
-
- public GetConsentImageResponse() {
- }
-
- public GetConsentImageResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetConsentImageResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentImageVO[] GetConsentImageResult;
-
- public GetConsentImageResponseBody() {
- }
-
- public GetConsentImageResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentImageVO[] GetConsentImageResult) {
- this.GetConsentImageResult = GetConsentImageResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveTempDataNewRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveTempDataNew", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataNewRequestBody Body;
-
- public SaveTempDataNewRequest() {
- }
-
- public SaveTempDataNewRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataNewRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveTempDataNewRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string patientCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string clnDeptCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=3)]
- public int formRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string formCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=5)]
- public int consentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=6)]
- public int rewriteConsentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string formXml;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
- public string dataXml;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
- public string deviceType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
- public string deviceIdentNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
- public string vistType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
- public string hosType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
- public string clnDate;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
- public string ward;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
- public string roomCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=16)]
- public int orderNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=17)]
- public string orderName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=18)]
- public string orderCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=19)]
- public string ocrCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=20)]
- public int cretNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=21)]
- public string createUserName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=22)]
- public string modifyUserName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=23)]
- public string mainDrId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=24)]
- public string userDeptCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=25)]
- public string pageCnt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=26)]
- public string actKind;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=27)]
- public string clientType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=28)]
- public string opRsrvNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=29)]
- public string consentState;
-
- public SaveTempDataNewRequestBody() {
- }
-
- public SaveTempDataNewRequestBody(
- string userId,
- string patientCode,
- string clnDeptCode,
- int formRid,
- string formCd,
- int consentMstRid,
- int rewriteConsentMstRid,
- string formXml,
- string dataXml,
- string deviceType,
- string deviceIdentNo,
- string vistType,
- string hosType,
- string clnDate,
- string ward,
- string roomCd,
- int orderNo,
- string orderName,
- string orderCd,
- string ocrCode,
- int cretNo,
- string createUserName,
- string modifyUserName,
- string mainDrId,
- string userDeptCd,
- string pageCnt,
- string actKind,
- string clientType,
- string opRsrvNo,
- string consentState) {
- this.userId = userId;
- this.patientCode = patientCode;
- this.clnDeptCode = clnDeptCode;
- this.formRid = formRid;
- this.formCd = formCd;
- this.consentMstRid = consentMstRid;
- this.rewriteConsentMstRid = rewriteConsentMstRid;
- this.formXml = formXml;
- this.dataXml = dataXml;
- this.deviceType = deviceType;
- this.deviceIdentNo = deviceIdentNo;
- this.vistType = vistType;
- this.hosType = hosType;
- this.clnDate = clnDate;
- this.ward = ward;
- this.roomCd = roomCd;
- this.orderNo = orderNo;
- this.orderName = orderName;
- this.orderCd = orderCd;
- this.ocrCode = ocrCode;
- this.cretNo = cretNo;
- this.createUserName = createUserName;
- this.modifyUserName = modifyUserName;
- this.mainDrId = mainDrId;
- this.userDeptCd = userDeptCd;
- this.pageCnt = pageCnt;
- this.actKind = actKind;
- this.clientType = clientType;
- this.opRsrvNo = opRsrvNo;
- this.consentState = consentState;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveTempDataNewResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveTempDataNewResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataNewResponseBody Body;
-
- public SaveTempDataNewResponse() {
- }
-
- public SaveTempDataNewResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataNewResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveTempDataNewResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveTempDataNewResult;
-
- public SaveTempDataNewResponseBody() {
- }
-
- public SaveTempDataNewResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveTempDataNewResult) {
- this.SaveTempDataNewResult = SaveTempDataNewResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveTempDataRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveTempData", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataRequestBody Body;
-
- public SaveTempDataRequest() {
- }
-
- public SaveTempDataRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveTempDataRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string patientCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string clnDeptCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=3)]
- public int formRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string formCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=5)]
- public int consentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=6)]
- public int rewriteConsentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string formXml;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
- public string dataXml;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
- public string deviceType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
- public string deviceIdentNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
- public string vistType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
- public string hosType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
- public string clnDate;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
- public string ward;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
- public string roomCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=16)]
- public int orderNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=17)]
- public string orderName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=18)]
- public string orderCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=19)]
- public string ocrCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=20)]
- public int cretNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=21)]
- public string createUserName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=22)]
- public string modifyUserName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=23)]
- public string mainDrId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=24)]
- public string userDeptCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=25)]
- public string pageCnt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=26)]
- public string actKind;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=27)]
- public string clientType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=28)]
- public string opRsrvNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=29)]
- public string consentState;
-
- public SaveTempDataRequestBody() {
- }
-
- public SaveTempDataRequestBody(
- string userId,
- string patientCode,
- string clnDeptCode,
- int formRid,
- string formCd,
- int consentMstRid,
- int rewriteConsentMstRid,
- string formXml,
- string dataXml,
- string deviceType,
- string deviceIdentNo,
- string vistType,
- string hosType,
- string clnDate,
- string ward,
- string roomCd,
- int orderNo,
- string orderName,
- string orderCd,
- string ocrCode,
- int cretNo,
- string createUserName,
- string modifyUserName,
- string mainDrId,
- string userDeptCd,
- string pageCnt,
- string actKind,
- string clientType,
- string opRsrvNo,
- string consentState) {
- this.userId = userId;
- this.patientCode = patientCode;
- this.clnDeptCode = clnDeptCode;
- this.formRid = formRid;
- this.formCd = formCd;
- this.consentMstRid = consentMstRid;
- this.rewriteConsentMstRid = rewriteConsentMstRid;
- this.formXml = formXml;
- this.dataXml = dataXml;
- this.deviceType = deviceType;
- this.deviceIdentNo = deviceIdentNo;
- this.vistType = vistType;
- this.hosType = hosType;
- this.clnDate = clnDate;
- this.ward = ward;
- this.roomCd = roomCd;
- this.orderNo = orderNo;
- this.orderName = orderName;
- this.orderCd = orderCd;
- this.ocrCode = ocrCode;
- this.cretNo = cretNo;
- this.createUserName = createUserName;
- this.modifyUserName = modifyUserName;
- this.mainDrId = mainDrId;
- this.userDeptCd = userDeptCd;
- this.pageCnt = pageCnt;
- this.actKind = actKind;
- this.clientType = clientType;
- this.opRsrvNo = opRsrvNo;
- this.consentState = consentState;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveTempDataResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveTempDataResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataResponseBody Body;
-
- public SaveTempDataResponse() {
- }
-
- public SaveTempDataResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveTempDataResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveTempDataResult;
-
- public SaveTempDataResponseBody() {
- }
-
- public SaveTempDataResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveTempDataResult) {
- this.SaveTempDataResult = SaveTempDataResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveCompleteRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveComplete", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteRequestBody Body;
-
- public SaveCompleteRequest() {
- }
-
- public SaveCompleteRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveCompleteRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string patientCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string clnDeptCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=3)]
- public int formRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string formCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=5)]
- public int consentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=6)]
- public int rewriteConsentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string formXml;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
- public string dataXml;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
- public string deviceType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
- public string deviceIdentNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
- public string vistType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
- public string hosType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
- public string clnDate;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
- public string ward;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
- public string roomcd;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=16)]
- public int orderNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=17)]
- public string orderName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=18)]
- public string orderCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=19)]
- public string ocrCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=20)]
- public int cretno;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=21)]
- public string createUserName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=22)]
- public string modifyUserName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=23)]
- public string mainDrId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=24)]
- public string userDeptCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=25)]
- public string pageCnt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=26)]
- public string actKind;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=27)]
- public string clientType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=28)]
- public string opRsrvNo;
-
- public SaveCompleteRequestBody() {
- }
-
- public SaveCompleteRequestBody(
- string userId,
- string patientCode,
- string clnDeptCode,
- int formRid,
- string formCd,
- int consentMstRid,
- int rewriteConsentMstRid,
- string formXml,
- string dataXml,
- string deviceType,
- string deviceIdentNo,
- string vistType,
- string hosType,
- string clnDate,
- string ward,
- string roomcd,
- int orderNo,
- string orderName,
- string orderCd,
- string ocrCode,
- int cretno,
- string createUserName,
- string modifyUserName,
- string mainDrId,
- string userDeptCd,
- string pageCnt,
- string actKind,
- string clientType,
- string opRsrvNo) {
- this.userId = userId;
- this.patientCode = patientCode;
- this.clnDeptCode = clnDeptCode;
- this.formRid = formRid;
- this.formCd = formCd;
- this.consentMstRid = consentMstRid;
- this.rewriteConsentMstRid = rewriteConsentMstRid;
- this.formXml = formXml;
- this.dataXml = dataXml;
- this.deviceType = deviceType;
- this.deviceIdentNo = deviceIdentNo;
- this.vistType = vistType;
- this.hosType = hosType;
- this.clnDate = clnDate;
- this.ward = ward;
- this.roomcd = roomcd;
- this.orderNo = orderNo;
- this.orderName = orderName;
- this.orderCd = orderCd;
- this.ocrCode = ocrCode;
- this.cretno = cretno;
- this.createUserName = createUserName;
- this.modifyUserName = modifyUserName;
- this.mainDrId = mainDrId;
- this.userDeptCd = userDeptCd;
- this.pageCnt = pageCnt;
- this.actKind = actKind;
- this.clientType = clientType;
- this.opRsrvNo = opRsrvNo;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveCompleteResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveCompleteResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteResponseBody Body;
-
- public SaveCompleteResponse() {
- }
-
- public SaveCompleteResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveCompleteResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=0)]
- public int SaveCompleteResult;
-
- public SaveCompleteResponseBody() {
- }
-
- public SaveCompleteResponseBody(int SaveCompleteResult) {
- this.SaveCompleteResult = SaveCompleteResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveCompleteAllNewRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveCompleteAllNew", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllNewRequestBody Body;
-
- public SaveCompleteAllNewRequest() {
- }
-
- public SaveCompleteAllNewRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllNewRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveCompleteAllNewRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string patientCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string clnDeptCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=3)]
- public int formRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string formCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=5)]
- public int consentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=6)]
- public int rewriteConsentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string formXml;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
- public string dataXml;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
- public string deviceType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
- public string deviceIdentNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
- public string vistType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
- public string hosType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
- public string clnDate;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
- public string ward;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
- public string roomCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=16)]
- public int orderNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=17)]
- public string orderName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=18)]
- public string orderCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=19)]
- public string ocrCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=20)]
- public int cretNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=21)]
- public string createUserName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=22)]
- public string modifyUserName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=23)]
- public string imageFileJson;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=24)]
- public string certTarget;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=25)]
- public string certResult;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=26)]
- public string dschDd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=27)]
- public string consentState;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=28)]
- public string mainDrId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=29)]
- public string userDeptCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=30)]
- public string pageCnt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=31)]
- public string actKind;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=32)]
- public string clientType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=33)]
- public string opRsrvNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=34)]
- public string fileSize;
-
- public SaveCompleteAllNewRequestBody() {
- }
-
- public SaveCompleteAllNewRequestBody(
- string userId,
- string patientCode,
- string clnDeptCode,
- int formRid,
- string formCd,
- int consentMstRid,
- int rewriteConsentMstRid,
- string formXml,
- string dataXml,
- string deviceType,
- string deviceIdentNo,
- string vistType,
- string hosType,
- string clnDate,
- string ward,
- string roomCd,
- int orderNo,
- string orderName,
- string orderCd,
- string ocrCode,
- int cretNo,
- string createUserName,
- string modifyUserName,
- string imageFileJson,
- string certTarget,
- string certResult,
- string dschDd,
- string consentState,
- string mainDrId,
- string userDeptCd,
- string pageCnt,
- string actKind,
- string clientType,
- string opRsrvNo,
- string fileSize) {
- this.userId = userId;
- this.patientCode = patientCode;
- this.clnDeptCode = clnDeptCode;
- this.formRid = formRid;
- this.formCd = formCd;
- this.consentMstRid = consentMstRid;
- this.rewriteConsentMstRid = rewriteConsentMstRid;
- this.formXml = formXml;
- this.dataXml = dataXml;
- this.deviceType = deviceType;
- this.deviceIdentNo = deviceIdentNo;
- this.vistType = vistType;
- this.hosType = hosType;
- this.clnDate = clnDate;
- this.ward = ward;
- this.roomCd = roomCd;
- this.orderNo = orderNo;
- this.orderName = orderName;
- this.orderCd = orderCd;
- this.ocrCode = ocrCode;
- this.cretNo = cretNo;
- this.createUserName = createUserName;
- this.modifyUserName = modifyUserName;
- this.imageFileJson = imageFileJson;
- this.certTarget = certTarget;
- this.certResult = certResult;
- this.dschDd = dschDd;
- this.consentState = consentState;
- this.mainDrId = mainDrId;
- this.userDeptCd = userDeptCd;
- this.pageCnt = pageCnt;
- this.actKind = actKind;
- this.clientType = clientType;
- this.opRsrvNo = opRsrvNo;
- this.fileSize = fileSize;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveCompleteAllNewResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveCompleteAllNewResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllNewResponseBody Body;
-
- public SaveCompleteAllNewResponse() {
- }
-
- public SaveCompleteAllNewResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllNewResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveCompleteAllNewResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveCompleteAllNewResult;
-
- public SaveCompleteAllNewResponseBody() {
- }
-
- public SaveCompleteAllNewResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveCompleteAllNewResult) {
- this.SaveCompleteAllNewResult = SaveCompleteAllNewResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveCompleteAllRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveCompleteAll", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllRequestBody Body;
-
- public SaveCompleteAllRequest() {
- }
-
- public SaveCompleteAllRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveCompleteAllRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string patientCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string clnDeptCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=3)]
- public int formRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string formCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=5)]
- public int consentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=6)]
- public int rewriteConsentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string formXml;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
- public string dataXml;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
- public string deviceType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
- public string deviceIdentNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
- public string vistType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
- public string hosType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
- public string clnDate;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
- public string ward;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
- public string roomCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=16)]
- public int orderNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=17)]
- public string orderName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=18)]
- public string orderCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=19)]
- public string ocrCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=20)]
- public int cretNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=21)]
- public string createUserName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=22)]
- public string modifyUserName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=23)]
- public string imageFileJson;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=24)]
- public string certTarget;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=25)]
- public string certResult;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=26)]
- public string dschDd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=27)]
- public string consentState;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=28)]
- public string mainDrId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=29)]
- public string userDeptCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=30)]
- public string pageCnt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=31)]
- public string actKind;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=32)]
- public string clientType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=33)]
- public string opRsrvNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=34)]
- public string fileSize;
-
- public SaveCompleteAllRequestBody() {
- }
-
- public SaveCompleteAllRequestBody(
- string userId,
- string patientCode,
- string clnDeptCode,
- int formRid,
- string formCd,
- int consentMstRid,
- int rewriteConsentMstRid,
- string formXml,
- string dataXml,
- string deviceType,
- string deviceIdentNo,
- string vistType,
- string hosType,
- string clnDate,
- string ward,
- string roomCd,
- int orderNo,
- string orderName,
- string orderCd,
- string ocrCode,
- int cretNo,
- string createUserName,
- string modifyUserName,
- string imageFileJson,
- string certTarget,
- string certResult,
- string dschDd,
- string consentState,
- string mainDrId,
- string userDeptCd,
- string pageCnt,
- string actKind,
- string clientType,
- string opRsrvNo,
- string fileSize) {
- this.userId = userId;
- this.patientCode = patientCode;
- this.clnDeptCode = clnDeptCode;
- this.formRid = formRid;
- this.formCd = formCd;
- this.consentMstRid = consentMstRid;
- this.rewriteConsentMstRid = rewriteConsentMstRid;
- this.formXml = formXml;
- this.dataXml = dataXml;
- this.deviceType = deviceType;
- this.deviceIdentNo = deviceIdentNo;
- this.vistType = vistType;
- this.hosType = hosType;
- this.clnDate = clnDate;
- this.ward = ward;
- this.roomCd = roomCd;
- this.orderNo = orderNo;
- this.orderName = orderName;
- this.orderCd = orderCd;
- this.ocrCode = ocrCode;
- this.cretNo = cretNo;
- this.createUserName = createUserName;
- this.modifyUserName = modifyUserName;
- this.imageFileJson = imageFileJson;
- this.certTarget = certTarget;
- this.certResult = certResult;
- this.dschDd = dschDd;
- this.consentState = consentState;
- this.mainDrId = mainDrId;
- this.userDeptCd = userDeptCd;
- this.pageCnt = pageCnt;
- this.actKind = actKind;
- this.clientType = clientType;
- this.opRsrvNo = opRsrvNo;
- this.fileSize = fileSize;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveCompleteAllResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveCompleteAllResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllResponseBody Body;
-
- public SaveCompleteAllResponse() {
- }
-
- public SaveCompleteAllResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveCompleteAllResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveCompleteAllResult;
-
- public SaveCompleteAllResponseBody() {
- }
-
- public SaveCompleteAllResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveCompleteAllResult) {
- this.SaveCompleteAllResult = SaveCompleteAllResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveDeleteRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveDelete", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveDeleteRequestBody Body;
-
- public SaveDeleteRequest() {
- }
-
- public SaveDeleteRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveDeleteRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveDeleteRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=1)]
- public int consentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string patientCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string clnDeptCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string formCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string vistType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string hosType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string clnDate;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
- public string reasonForUseN;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
- public string ocrCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=10)]
- public int cretno;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
- public string userDeptCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
- public string pageCnt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
- public string actKind;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
- public string clientType;
-
- public SaveDeleteRequestBody() {
- }
-
- public SaveDeleteRequestBody(string userId, int consentMstRid, string patientCode, string clnDeptCode, string formCd, string vistType, string hosType, string clnDate, string reasonForUseN, string ocrCode, int cretno, string userDeptCd, string pageCnt, string actKind, string clientType) {
- this.userId = userId;
- this.consentMstRid = consentMstRid;
- this.patientCode = patientCode;
- this.clnDeptCode = clnDeptCode;
- this.formCd = formCd;
- this.vistType = vistType;
- this.hosType = hosType;
- this.clnDate = clnDate;
- this.reasonForUseN = reasonForUseN;
- this.ocrCode = ocrCode;
- this.cretno = cretno;
- this.userDeptCd = userDeptCd;
- this.pageCnt = pageCnt;
- this.actKind = actKind;
- this.clientType = clientType;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveDeleteResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveDeleteResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveDeleteResponseBody Body;
-
- public SaveDeleteResponse() {
- }
-
- public SaveDeleteResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveDeleteResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveDeleteResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveDeleteResult;
-
- public SaveDeleteResponseBody() {
- }
-
- public SaveDeleteResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveDeleteResult) {
- this.SaveDeleteResult = SaveDeleteResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SavePrintOutRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SavePrintOut", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutRequestBody Body;
-
- public SavePrintOutRequest() {
- }
-
- public SavePrintOutRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SavePrintOutRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string patientCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string clnDeptCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=3)]
- public int formRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string formCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=5)]
- public int consentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=6)]
- public int reissueConsentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string formXml;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
- public string dataXml;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
- public string deviceType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
- public string deviceIdentNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
- public string vistType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
- public string hosType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
- public string clnDate;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
- public string ward;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
- public string roomcd;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=16)]
- public int orderNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=17)]
- public string orderName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=18)]
- public string orderCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=19)]
- public string ocrCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=20)]
- public int cretno;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=21)]
- public string createUserName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=22)]
- public string modifyUserName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=23)]
- public string mainDrId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=24)]
- public string userDeptCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=25)]
- public string pageCnt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=26)]
- public string actKind;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=27)]
- public string clientType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=28)]
- public string opRsrvNo;
-
- public SavePrintOutRequestBody() {
- }
-
- public SavePrintOutRequestBody(
- string userId,
- string patientCode,
- string clnDeptCode,
- int formRid,
- string formCd,
- int consentMstRid,
- int reissueConsentMstRid,
- string formXml,
- string dataXml,
- string deviceType,
- string deviceIdentNo,
- string vistType,
- string hosType,
- string clnDate,
- string ward,
- string roomcd,
- int orderNo,
- string orderName,
- string orderCd,
- string ocrCode,
- int cretno,
- string createUserName,
- string modifyUserName,
- string mainDrId,
- string userDeptCd,
- string pageCnt,
- string actKind,
- string clientType,
- string opRsrvNo) {
- this.userId = userId;
- this.patientCode = patientCode;
- this.clnDeptCode = clnDeptCode;
- this.formRid = formRid;
- this.formCd = formCd;
- this.consentMstRid = consentMstRid;
- this.reissueConsentMstRid = reissueConsentMstRid;
- this.formXml = formXml;
- this.dataXml = dataXml;
- this.deviceType = deviceType;
- this.deviceIdentNo = deviceIdentNo;
- this.vistType = vistType;
- this.hosType = hosType;
- this.clnDate = clnDate;
- this.ward = ward;
- this.roomcd = roomcd;
- this.orderNo = orderNo;
- this.orderName = orderName;
- this.orderCd = orderCd;
- this.ocrCode = ocrCode;
- this.cretno = cretno;
- this.createUserName = createUserName;
- this.modifyUserName = modifyUserName;
- this.mainDrId = mainDrId;
- this.userDeptCd = userDeptCd;
- this.pageCnt = pageCnt;
- this.actKind = actKind;
- this.clientType = clientType;
- this.opRsrvNo = opRsrvNo;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SavePrintOutResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SavePrintOutResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutResponseBody Body;
-
- public SavePrintOutResponse() {
- }
-
- public SavePrintOutResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SavePrintOutResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=0)]
- public int SavePrintOutResult;
-
- public SavePrintOutResponseBody() {
- }
-
- public SavePrintOutResponseBody(int SavePrintOutResult) {
- this.SavePrintOutResult = SavePrintOutResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveMedicalHistoryRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveMedicalHistory", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryRequestBody Body;
-
- public SaveMedicalHistoryRequest() {
- }
-
- public SaveMedicalHistoryRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveMedicalHistoryRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string patientCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string clnDate;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string bp;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string dm;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string heart;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string kidney;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string respiration;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string hx;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
- public string allergy;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
- public string drug;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
- public string smoking;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
- public string idio;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
- public string nacrotics;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
- public string airway;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
- public string hemorrhage;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
- public string status_etc;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=16)]
- public string userId;
-
- public SaveMedicalHistoryRequestBody() {
- }
-
- public SaveMedicalHistoryRequestBody(
- string patientCode,
- string clnDate,
- string bp,
- string dm,
- string heart,
- string kidney,
- string respiration,
- string hx,
- string allergy,
- string drug,
- string smoking,
- string idio,
- string nacrotics,
- string airway,
- string hemorrhage,
- string status_etc,
- string userId) {
- this.patientCode = patientCode;
- this.clnDate = clnDate;
- this.bp = bp;
- this.dm = dm;
- this.heart = heart;
- this.kidney = kidney;
- this.respiration = respiration;
- this.hx = hx;
- this.allergy = allergy;
- this.drug = drug;
- this.smoking = smoking;
- this.idio = idio;
- this.nacrotics = nacrotics;
- this.airway = airway;
- this.hemorrhage = hemorrhage;
- this.status_etc = status_etc;
- this.userId = userId;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveMedicalHistoryResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveMedicalHistoryResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryResponseBody Body;
-
- public SaveMedicalHistoryResponse() {
- }
-
- public SaveMedicalHistoryResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveMedicalHistoryResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string SaveMedicalHistoryResult;
-
- public SaveMedicalHistoryResponseBody() {
- }
-
- public SaveMedicalHistoryResponseBody(string SaveMedicalHistoryResult) {
- this.SaveMedicalHistoryResult = SaveMedicalHistoryResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveImageUploadInfoRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveImageUploadInfo", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoRequestBody Body;
-
- public SaveImageUploadInfoRequest() {
- }
-
- public SaveImageUploadInfoRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveImageUploadInfoRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string consentState;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string imageFileName;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=2)]
- public int consentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=4)]
- public int formRid;
-
- public SaveImageUploadInfoRequestBody() {
- }
-
- public SaveImageUploadInfoRequestBody(string consentState, string imageFileName, int consentMstRid, string userId, int formRid) {
- this.consentState = consentState;
- this.imageFileName = imageFileName;
- this.consentMstRid = consentMstRid;
- this.userId = userId;
- this.formRid = formRid;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveImageUploadInfoResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveImageUploadInfoResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoResponseBody Body;
-
- public SaveImageUploadInfoResponse() {
- }
-
- public SaveImageUploadInfoResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveImageUploadInfoResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=0)]
- public int SaveImageUploadInfoResult;
-
- public SaveImageUploadInfoResponseBody() {
- }
-
- public SaveImageUploadInfoResponseBody(int SaveImageUploadInfoResult) {
- this.SaveImageUploadInfoResult = SaveImageUploadInfoResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveImageSignInfoRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveImageSignInfo", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoRequestBody Body;
-
- public SaveImageSignInfoRequest() {
- }
-
- public SaveImageSignInfoRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveImageSignInfoRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string consentState;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=1)]
- public int consentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=2)]
- public int consentImageRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string certTarget;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string sCertResult;
-
- public SaveImageSignInfoRequestBody() {
- }
-
- public SaveImageSignInfoRequestBody(string consentState, int consentMstRid, int consentImageRid, string userId, string certTarget, string sCertResult) {
- this.consentState = consentState;
- this.consentMstRid = consentMstRid;
- this.consentImageRid = consentImageRid;
- this.userId = userId;
- this.certTarget = certTarget;
- this.sCertResult = sCertResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveImageSignInfoResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveImageSignInfoResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoResponseBody Body;
-
- public SaveImageSignInfoResponse() {
- }
-
- public SaveImageSignInfoResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute()]
- public partial class SaveImageSignInfoResponseBody {
-
- public SaveImageSignInfoResponseBody() {
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class CheckConsentStateRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="CheckConsentState", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateRequestBody Body;
-
- public CheckConsentStateRequest() {
- }
-
- public CheckConsentStateRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class CheckConsentStateRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=0)]
- public int consentmstrid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string consent_state;
-
- public CheckConsentStateRequestBody() {
- }
-
- public CheckConsentStateRequestBody(int consentmstrid, string consent_state) {
- this.consentmstrid = consentmstrid;
- this.consent_state = consent_state;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class CheckConsentStateResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="CheckConsentStateResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateResponseBody Body;
-
- public CheckConsentStateResponse() {
- }
-
- public CheckConsentStateResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class CheckConsentStateResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData CheckConsentStateResult;
-
- public CheckConsentStateResponseBody() {
- }
-
- public CheckConsentStateResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData CheckConsentStateResult) {
- this.CheckConsentStateResult = CheckConsentStateResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getAgmtConsentDataRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getAgmtConsentData", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getAgmtConsentDataRequestBody Body;
-
- public getAgmtConsentDataRequest() {
- }
-
- public getAgmtConsentDataRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.getAgmtConsentDataRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getAgmtConsentDataRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string instcd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string ocrtag;
-
- public getAgmtConsentDataRequestBody() {
- }
-
- public getAgmtConsentDataRequestBody(string instcd, string ocrtag) {
- this.instcd = instcd;
- this.ocrtag = ocrtag;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getAgmtConsentDataResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getAgmtConsentDataResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getAgmtConsentDataResponseBody Body;
-
- public getAgmtConsentDataResponse() {
- }
-
- public getAgmtConsentDataResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.getAgmtConsentDataResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getAgmtConsentDataResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string getAgmtConsentDataResult;
-
- public getAgmtConsentDataResponseBody() {
- }
-
- public getAgmtConsentDataResponseBody(string getAgmtConsentDataResult) {
- this.getAgmtConsentDataResult = getAgmtConsentDataResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getOcrStringRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getOcrString", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringRequestBody Body;
-
- public getOcrStringRequest() {
- }
-
- public getOcrStringRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getOcrStringRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string formCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string dutinstcd;
-
- public getOcrStringRequestBody() {
- }
-
- public getOcrStringRequestBody(string formCd, string dutinstcd) {
- this.formCd = formCd;
- this.dutinstcd = dutinstcd;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getOcrStringResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getOcrStringResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringResponseBody Body;
-
- public getOcrStringResponse() {
- }
-
- public getOcrStringResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getOcrStringResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string getOcrStringResult;
-
- public getOcrStringResponseBody() {
- }
-
- public getOcrStringResponseBody(string getOcrStringResult) {
- this.getOcrStringResult = getOcrStringResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getCertUseYnRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getCertUseYn", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnRequestBody Body;
-
- public getCertUseYnRequest() {
- }
-
- public getCertUseYnRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getCertUseYnRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string formCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string dutinstcd;
-
- public getCertUseYnRequestBody() {
- }
-
- public getCertUseYnRequestBody(string formCd, string dutinstcd) {
- this.formCd = formCd;
- this.dutinstcd = dutinstcd;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getCertUseYnResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getCertUseYnResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnResponseBody Body;
-
- public getCertUseYnResponse() {
- }
-
- public getCertUseYnResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getCertUseYnResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string getCertUseYnResult;
-
- public getCertUseYnResponseBody() {
- }
-
- public getCertUseYnResponseBody(string getCertUseYnResult) {
- this.getCertUseYnResult = getCertUseYnResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getCertUseYnDataRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getCertUseYnData", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataRequestBody Body;
-
- public getCertUseYnDataRequest() {
- }
-
- public getCertUseYnDataRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getCertUseYnDataRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string formCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string dutinstcd;
-
- public getCertUseYnDataRequestBody() {
- }
-
- public getCertUseYnDataRequestBody(string formCd, string dutinstcd) {
- this.formCd = formCd;
- this.dutinstcd = dutinstcd;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getCertUseYnDataResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getCertUseYnDataResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataResponseBody Body;
-
- public getCertUseYnDataResponse() {
- }
-
- public getCertUseYnDataResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getCertUseYnDataResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string getCertUseYnDataResult;
-
- public getCertUseYnDataResponseBody() {
- }
-
- public getCertUseYnDataResponseBody(string getCertUseYnDataResult) {
- this.getCertUseYnDataResult = getCertUseYnDataResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getDualViewModeRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getDualViewMode", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeRequestBody Body;
-
- public getDualViewModeRequest() {
- }
-
- public getDualViewModeRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getDualViewModeRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string dutinstcd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string ipaddr;
-
- public getDualViewModeRequestBody() {
- }
-
- public getDualViewModeRequestBody(string dutinstcd, string ipaddr) {
- this.dutinstcd = dutinstcd;
- this.ipaddr = ipaddr;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getDualViewModeResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getDualViewModeResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeResponseBody Body;
-
- public getDualViewModeResponse() {
- }
-
- public getDualViewModeResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getDualViewModeResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string getDualViewModeResult;
-
- public getDualViewModeResponseBody() {
- }
-
- public getDualViewModeResponseBody(string getDualViewModeResult) {
- this.getDualViewModeResult = getDualViewModeResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class updateCertifyCompleteRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="updateCertifyComplete", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteRequestBody Body;
-
- public updateCertifyCompleteRequest() {
- }
-
- public updateCertifyCompleteRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class updateCertifyCompleteRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string consent_rids;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string ocrtags;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string instcd;
-
- public updateCertifyCompleteRequestBody() {
- }
-
- public updateCertifyCompleteRequestBody(string consent_rids, string ocrtags, string instcd) {
- this.consent_rids = consent_rids;
- this.ocrtags = ocrtags;
- this.instcd = instcd;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class updateCertifyCompleteResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="updateCertifyCompleteResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteResponseBody Body;
-
- public updateCertifyCompleteResponse() {
- }
-
- public updateCertifyCompleteResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class updateCertifyCompleteResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string updateCertifyCompleteResult;
-
- public updateCertifyCompleteResponseBody() {
- }
-
- public updateCertifyCompleteResponseBody(string updateCertifyCompleteResult) {
- this.updateCertifyCompleteResult = updateCertifyCompleteResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class updatePrintHistoryRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="updatePrintHistory", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryRequestBody Body;
-
- public updatePrintHistoryRequest() {
- }
-
- public updatePrintHistoryRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class updatePrintHistoryRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string pid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string ocrtag;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string instcd;
-
- public updatePrintHistoryRequestBody() {
- }
-
- public updatePrintHistoryRequestBody(string pid, string ocrtag, string instcd) {
- this.pid = pid;
- this.ocrtag = ocrtag;
- this.instcd = instcd;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class updatePrintHistoryResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="updatePrintHistoryResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryResponseBody Body;
-
- public updatePrintHistoryResponse() {
- }
-
- public updatePrintHistoryResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute()]
- public partial class updatePrintHistoryResponseBody {
-
- public updatePrintHistoryResponseBody() {
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class duplicateCertConsentRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="duplicateCertConsent", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentRequestBody Body;
-
- public duplicateCertConsentRequest() {
- }
-
- public duplicateCertConsentRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class duplicateCertConsentRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string pid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string instCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string formCd;
-
- public duplicateCertConsentRequestBody() {
- }
-
- public duplicateCertConsentRequestBody(string pid, string instCd, string formCd) {
- this.pid = pid;
- this.instCd = instCd;
- this.formCd = formCd;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class duplicateCertConsentResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="duplicateCertConsentResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentResponseBody Body;
-
- public duplicateCertConsentResponse() {
- }
-
- public duplicateCertConsentResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class duplicateCertConsentResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData duplicateCertConsentResult;
-
- public duplicateCertConsentResponseBody() {
- }
-
- public duplicateCertConsentResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData duplicateCertConsentResult) {
- this.duplicateCertConsentResult = duplicateCertConsentResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class checkJinJeongDocumentRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="checkJinJeongDocument", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.checkJinJeongDocumentRequestBody Body;
-
- public checkJinJeongDocumentRequest() {
- }
-
- public checkJinJeongDocumentRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.checkJinJeongDocumentRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class checkJinJeongDocumentRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string instcd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string formcd;
-
- public checkJinJeongDocumentRequestBody() {
- }
-
- public checkJinJeongDocumentRequestBody(string instcd, string formcd) {
- this.instcd = instcd;
- this.formcd = formcd;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class checkJinJeongDocumentResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="checkJinJeongDocumentResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.checkJinJeongDocumentResponseBody Body;
-
- public checkJinJeongDocumentResponse() {
- }
-
- public checkJinJeongDocumentResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.checkJinJeongDocumentResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class checkJinJeongDocumentResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=0)]
- public int checkJinJeongDocumentResult;
-
- public checkJinJeongDocumentResponseBody() {
- }
-
- public checkJinJeongDocumentResponseBody(int checkJinJeongDocumentResult) {
- this.checkJinJeongDocumentResult = checkJinJeongDocumentResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getLinkedAnstDocumentRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getLinkedAnstDocument", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getLinkedAnstDocumentRequestBody Body;
-
- public getLinkedAnstDocumentRequest() {
- }
-
- public getLinkedAnstDocumentRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.getLinkedAnstDocumentRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getLinkedAnstDocumentRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string instcd;
-
- public getLinkedAnstDocumentRequestBody() {
- }
-
- public getLinkedAnstDocumentRequestBody(string instcd) {
- this.instcd = instcd;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getLinkedAnstDocumentResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getLinkedAnstDocumentResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getLinkedAnstDocumentResponseBody Body;
-
- public getLinkedAnstDocumentResponse() {
- }
-
- public getLinkedAnstDocumentResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.getLinkedAnstDocumentResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getLinkedAnstDocumentResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string getLinkedAnstDocumentResult;
-
- public getLinkedAnstDocumentResponseBody() {
- }
-
- public getLinkedAnstDocumentResponseBody(string getLinkedAnstDocumentResult) {
- this.getLinkedAnstDocumentResult = getLinkedAnstDocumentResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class checkOperationDocumentRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="checkOperationDocument", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.checkOperationDocumentRequestBody Body;
-
- public checkOperationDocumentRequest() {
- }
-
- public checkOperationDocumentRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.checkOperationDocumentRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class checkOperationDocumentRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string instcd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string formCd;
-
- public checkOperationDocumentRequestBody() {
- }
-
- public checkOperationDocumentRequestBody(string instcd, string formCd) {
- this.instcd = instcd;
- this.formCd = formCd;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class checkOperationDocumentResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="checkOperationDocumentResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.checkOperationDocumentResponseBody Body;
-
- public checkOperationDocumentResponse() {
- }
-
- public checkOperationDocumentResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.checkOperationDocumentResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class checkOperationDocumentResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string checkOperationDocumentResult;
-
- public checkOperationDocumentResponseBody() {
- }
-
- public checkOperationDocumentResponseBody(string checkOperationDocumentResult) {
- this.checkOperationDocumentResult = checkOperationDocumentResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentFormXmlRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentFormXml", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlRequestBody Body;
-
- public GetConsentFormXmlRequest() {
- }
-
- public GetConsentFormXmlRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetConsentFormXmlRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=0)]
- public int consentMstRid;
-
- public GetConsentFormXmlRequestBody() {
- }
-
- public GetConsentFormXmlRequestBody(int consentMstRid) {
- this.consentMstRid = consentMstRid;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentFormXmlResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentFormXmlResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlResponseBody Body;
-
- public GetConsentFormXmlResponse() {
- }
-
- public GetConsentFormXmlResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetConsentFormXmlResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string GetConsentFormXmlResult;
-
- public GetConsentFormXmlResponseBody() {
- }
-
- public GetConsentFormXmlResponseBody(string GetConsentFormXmlResult) {
- this.GetConsentFormXmlResult = GetConsentFormXmlResult;
- }
- }
-
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- public interface ConsentSvcSoapChannel : CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap, System.ServiceModel.IClientChannel {
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- public partial class ConsentSvcSoapClient : System.ServiceModel.ClientBase<CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap>, CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap {
-
- public ConsentSvcSoapClient() {
- }
-
- public ConsentSvcSoapClient(string endpointConfigurationName) :
- base(endpointConfigurationName) {
- }
-
- public ConsentSvcSoapClient(string endpointConfigurationName, string remoteAddress) :
- base(endpointConfigurationName, remoteAddress) {
- }
-
- public ConsentSvcSoapClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
- base(endpointConfigurationName, remoteAddress) {
- }
-
- public ConsentSvcSoapClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
- base(binding, remoteAddress) {
- }
-
- public bool CheckWebService() {
- return base.Channel.CheckWebService();
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.getOcrType6Forms(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsRequest request) {
- return base.Channel.getOcrType6Forms(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ArrayOfString getOcrType6Forms(string dutinstcd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsRequestBody();
- inValue.Body.dutinstcd = dutinstcd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).getOcrType6Forms(inValue);
- return retVal.Body.getOcrType6FormsResult;
- }
-
- public bool CheckDatabaseConnection() {
- return base.Channel.CheckDatabaseConnection();
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetCategoryForDropdown(CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownRequest request) {
- return base.Channel.GetCategoryForDropdown(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.CategoryForDropdownVO[] GetCategoryForDropdown(string instCd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownRequestBody();
- inValue.Body.instCd = instCd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetCategoryForDropdown(inValue);
- return retVal.Body.GetCategoryForDropdownResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListByUserNameResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentListByUserName(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListByUserNameRequest request) {
- return base.Channel.GetConsentListByUserName(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentListByUserName(string username, string startDt, string endDt, string consetState, string dutinstcd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListByUserNameRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListByUserNameRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListByUserNameRequestBody();
- inValue.Body.username = username;
- inValue.Body.startDt = startDt;
- inValue.Body.endDt = endDt;
- inValue.Body.consetState = consetState;
- inValue.Body.dutinstcd = dutinstcd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListByUserNameResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentListByUserName(inValue);
- return retVal.Body.GetConsentListByUserNameResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentList(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListRequest request) {
- return base.Channel.GetConsentList(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentList(string patientCode, string startDt, string endDt, string consentState, string instCd, string userId) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListRequestBody();
- inValue.Body.patientCode = patientCode;
- inValue.Body.startDt = startDt;
- inValue.Body.endDt = endDt;
- inValue.Body.consentState = consentState;
- inValue.Body.instCd = instCd;
- inValue.Body.userId = userId;
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentList(inValue);
- return retVal.Body.GetConsentListResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentBySearch(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchRequest request) {
- return base.Channel.GetConsentBySearch(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentBySearch(string categoryId, string keyWord, string instCd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchRequestBody();
- inValue.Body.categoryId = categoryId;
- inValue.Body.keyWord = keyWord;
- inValue.Body.instCd = instCd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentBySearch(inValue);
- return retVal.Body.GetConsentBySearchResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentByFormcd(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdRequest request) {
- return base.Channel.GetConsentByFormcd(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO GetConsentByFormcd(string formCd, string instCd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdRequestBody();
- inValue.Body.formCd = formCd;
- inValue.Body.instCd = instCd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentByFormcd(inValue);
- return retVal.Body.GetConsentByFormcdResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentImage(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageRequest request) {
- return base.Channel.GetConsentImage(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentImageVO[] GetConsentImage(string consentMstRid) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageRequestBody();
- inValue.Body.consentMstRid = consentMstRid;
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentImage(inValue);
- return retVal.Body.GetConsentImageResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataNewResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SaveTempDataNew(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataNewRequest request) {
- return base.Channel.SaveTempDataNew(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveTempDataNew(
- string userId,
- string patientCode,
- string clnDeptCode,
- int formRid,
- string formCd,
- int consentMstRid,
- int rewriteConsentMstRid,
- string formXml,
- string dataXml,
- string deviceType,
- string deviceIdentNo,
- string vistType,
- string hosType,
- string clnDate,
- string ward,
- string roomCd,
- int orderNo,
- string orderName,
- string orderCd,
- string ocrCode,
- int cretNo,
- string createUserName,
- string modifyUserName,
- string mainDrId,
- string userDeptCd,
- string pageCnt,
- string actKind,
- string clientType,
- string opRsrvNo,
- string consentState) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataNewRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataNewRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataNewRequestBody();
- inValue.Body.userId = userId;
- inValue.Body.patientCode = patientCode;
- inValue.Body.clnDeptCode = clnDeptCode;
- inValue.Body.formRid = formRid;
- inValue.Body.formCd = formCd;
- inValue.Body.consentMstRid = consentMstRid;
- inValue.Body.rewriteConsentMstRid = rewriteConsentMstRid;
- inValue.Body.formXml = formXml;
- inValue.Body.dataXml = dataXml;
- inValue.Body.deviceType = deviceType;
- inValue.Body.deviceIdentNo = deviceIdentNo;
- inValue.Body.vistType = vistType;
- inValue.Body.hosType = hosType;
- inValue.Body.clnDate = clnDate;
- inValue.Body.ward = ward;
- inValue.Body.roomCd = roomCd;
- inValue.Body.orderNo = orderNo;
- inValue.Body.orderName = orderName;
- inValue.Body.orderCd = orderCd;
- inValue.Body.ocrCode = ocrCode;
- inValue.Body.cretNo = cretNo;
- inValue.Body.createUserName = createUserName;
- inValue.Body.modifyUserName = modifyUserName;
- inValue.Body.mainDrId = mainDrId;
- inValue.Body.userDeptCd = userDeptCd;
- inValue.Body.pageCnt = pageCnt;
- inValue.Body.actKind = actKind;
- inValue.Body.clientType = clientType;
- inValue.Body.opRsrvNo = opRsrvNo;
- inValue.Body.consentState = consentState;
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataNewResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SaveTempDataNew(inValue);
- return retVal.Body.SaveTempDataNewResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SaveTempData(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataRequest request) {
- return base.Channel.SaveTempData(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveTempData(
- string userId,
- string patientCode,
- string clnDeptCode,
- int formRid,
- string formCd,
- int consentMstRid,
- int rewriteConsentMstRid,
- string formXml,
- string dataXml,
- string deviceType,
- string deviceIdentNo,
- string vistType,
- string hosType,
- string clnDate,
- string ward,
- string roomCd,
- int orderNo,
- string orderName,
- string orderCd,
- string ocrCode,
- int cretNo,
- string createUserName,
- string modifyUserName,
- string mainDrId,
- string userDeptCd,
- string pageCnt,
- string actKind,
- string clientType,
- string opRsrvNo,
- string consentState) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataRequestBody();
- inValue.Body.userId = userId;
- inValue.Body.patientCode = patientCode;
- inValue.Body.clnDeptCode = clnDeptCode;
- inValue.Body.formRid = formRid;
- inValue.Body.formCd = formCd;
- inValue.Body.consentMstRid = consentMstRid;
- inValue.Body.rewriteConsentMstRid = rewriteConsentMstRid;
- inValue.Body.formXml = formXml;
- inValue.Body.dataXml = dataXml;
- inValue.Body.deviceType = deviceType;
- inValue.Body.deviceIdentNo = deviceIdentNo;
- inValue.Body.vistType = vistType;
- inValue.Body.hosType = hosType;
- inValue.Body.clnDate = clnDate;
- inValue.Body.ward = ward;
- inValue.Body.roomCd = roomCd;
- inValue.Body.orderNo = orderNo;
- inValue.Body.orderName = orderName;
- inValue.Body.orderCd = orderCd;
- inValue.Body.ocrCode = ocrCode;
- inValue.Body.cretNo = cretNo;
- inValue.Body.createUserName = createUserName;
- inValue.Body.modifyUserName = modifyUserName;
- inValue.Body.mainDrId = mainDrId;
- inValue.Body.userDeptCd = userDeptCd;
- inValue.Body.pageCnt = pageCnt;
- inValue.Body.actKind = actKind;
- inValue.Body.clientType = clientType;
- inValue.Body.opRsrvNo = opRsrvNo;
- inValue.Body.consentState = consentState;
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SaveTempData(inValue);
- return retVal.Body.SaveTempDataResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SaveComplete(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteRequest request) {
- return base.Channel.SaveComplete(request);
- }
-
- public int SaveComplete(
- string userId,
- string patientCode,
- string clnDeptCode,
- int formRid,
- string formCd,
- int consentMstRid,
- int rewriteConsentMstRid,
- string formXml,
- string dataXml,
- string deviceType,
- string deviceIdentNo,
- string vistType,
- string hosType,
- string clnDate,
- string ward,
- string roomcd,
- int orderNo,
- string orderName,
- string orderCd,
- string ocrCode,
- int cretno,
- string createUserName,
- string modifyUserName,
- string mainDrId,
- string userDeptCd,
- string pageCnt,
- string actKind,
- string clientType,
- string opRsrvNo) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteRequestBody();
- inValue.Body.userId = userId;
- inValue.Body.patientCode = patientCode;
- inValue.Body.clnDeptCode = clnDeptCode;
- inValue.Body.formRid = formRid;
- inValue.Body.formCd = formCd;
- inValue.Body.consentMstRid = consentMstRid;
- inValue.Body.rewriteConsentMstRid = rewriteConsentMstRid;
- inValue.Body.formXml = formXml;
- inValue.Body.dataXml = dataXml;
- inValue.Body.deviceType = deviceType;
- inValue.Body.deviceIdentNo = deviceIdentNo;
- inValue.Body.vistType = vistType;
- inValue.Body.hosType = hosType;
- inValue.Body.clnDate = clnDate;
- inValue.Body.ward = ward;
- inValue.Body.roomcd = roomcd;
- inValue.Body.orderNo = orderNo;
- inValue.Body.orderName = orderName;
- inValue.Body.orderCd = orderCd;
- inValue.Body.ocrCode = ocrCode;
- inValue.Body.cretno = cretno;
- inValue.Body.createUserName = createUserName;
- inValue.Body.modifyUserName = modifyUserName;
- inValue.Body.mainDrId = mainDrId;
- inValue.Body.userDeptCd = userDeptCd;
- inValue.Body.pageCnt = pageCnt;
- inValue.Body.actKind = actKind;
- inValue.Body.clientType = clientType;
- inValue.Body.opRsrvNo = opRsrvNo;
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SaveComplete(inValue);
- return retVal.Body.SaveCompleteResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllNewResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SaveCompleteAllNew(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllNewRequest request) {
- return base.Channel.SaveCompleteAllNew(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveCompleteAllNew(
- string userId,
- string patientCode,
- string clnDeptCode,
- int formRid,
- string formCd,
- int consentMstRid,
- int rewriteConsentMstRid,
- string formXml,
- string dataXml,
- string deviceType,
- string deviceIdentNo,
- string vistType,
- string hosType,
- string clnDate,
- string ward,
- string roomCd,
- int orderNo,
- string orderName,
- string orderCd,
- string ocrCode,
- int cretNo,
- string createUserName,
- string modifyUserName,
- string imageFileJson,
- string certTarget,
- string certResult,
- string dschDd,
- string consentState,
- string mainDrId,
- string userDeptCd,
- string pageCnt,
- string actKind,
- string clientType,
- string opRsrvNo,
- string fileSize) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllNewRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllNewRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllNewRequestBody();
- inValue.Body.userId = userId;
- inValue.Body.patientCode = patientCode;
- inValue.Body.clnDeptCode = clnDeptCode;
- inValue.Body.formRid = formRid;
- inValue.Body.formCd = formCd;
- inValue.Body.consentMstRid = consentMstRid;
- inValue.Body.rewriteConsentMstRid = rewriteConsentMstRid;
- inValue.Body.formXml = formXml;
- inValue.Body.dataXml = dataXml;
- inValue.Body.deviceType = deviceType;
- inValue.Body.deviceIdentNo = deviceIdentNo;
- inValue.Body.vistType = vistType;
- inValue.Body.hosType = hosType;
- inValue.Body.clnDate = clnDate;
- inValue.Body.ward = ward;
- inValue.Body.roomCd = roomCd;
- inValue.Body.orderNo = orderNo;
- inValue.Body.orderName = orderName;
- inValue.Body.orderCd = orderCd;
- inValue.Body.ocrCode = ocrCode;
- inValue.Body.cretNo = cretNo;
- inValue.Body.createUserName = createUserName;
- inValue.Body.modifyUserName = modifyUserName;
- inValue.Body.imageFileJson = imageFileJson;
- inValue.Body.certTarget = certTarget;
- inValue.Body.certResult = certResult;
- inValue.Body.dschDd = dschDd;
- inValue.Body.consentState = consentState;
- inValue.Body.mainDrId = mainDrId;
- inValue.Body.userDeptCd = userDeptCd;
- inValue.Body.pageCnt = pageCnt;
- inValue.Body.actKind = actKind;
- inValue.Body.clientType = clientType;
- inValue.Body.opRsrvNo = opRsrvNo;
- inValue.Body.fileSize = fileSize;
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllNewResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SaveCompleteAllNew(inValue);
- return retVal.Body.SaveCompleteAllNewResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SaveCompleteAll(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllRequest request) {
- return base.Channel.SaveCompleteAll(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveCompleteAll(
- string userId,
- string patientCode,
- string clnDeptCode,
- int formRid,
- string formCd,
- int consentMstRid,
- int rewriteConsentMstRid,
- string formXml,
- string dataXml,
- string deviceType,
- string deviceIdentNo,
- string vistType,
- string hosType,
- string clnDate,
- string ward,
- string roomCd,
- int orderNo,
- string orderName,
- string orderCd,
- string ocrCode,
- int cretNo,
- string createUserName,
- string modifyUserName,
- string imageFileJson,
- string certTarget,
- string certResult,
- string dschDd,
- string consentState,
- string mainDrId,
- string userDeptCd,
- string pageCnt,
- string actKind,
- string clientType,
- string opRsrvNo,
- string fileSize) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllRequestBody();
- inValue.Body.userId = userId;
- inValue.Body.patientCode = patientCode;
- inValue.Body.clnDeptCode = clnDeptCode;
- inValue.Body.formRid = formRid;
- inValue.Body.formCd = formCd;
- inValue.Body.consentMstRid = consentMstRid;
- inValue.Body.rewriteConsentMstRid = rewriteConsentMstRid;
- inValue.Body.formXml = formXml;
- inValue.Body.dataXml = dataXml;
- inValue.Body.deviceType = deviceType;
- inValue.Body.deviceIdentNo = deviceIdentNo;
- inValue.Body.vistType = vistType;
- inValue.Body.hosType = hosType;
- inValue.Body.clnDate = clnDate;
- inValue.Body.ward = ward;
- inValue.Body.roomCd = roomCd;
- inValue.Body.orderNo = orderNo;
- inValue.Body.orderName = orderName;
- inValue.Body.orderCd = orderCd;
- inValue.Body.ocrCode = ocrCode;
- inValue.Body.cretNo = cretNo;
- inValue.Body.createUserName = createUserName;
- inValue.Body.modifyUserName = modifyUserName;
- inValue.Body.imageFileJson = imageFileJson;
- inValue.Body.certTarget = certTarget;
- inValue.Body.certResult = certResult;
- inValue.Body.dschDd = dschDd;
- inValue.Body.consentState = consentState;
- inValue.Body.mainDrId = mainDrId;
- inValue.Body.userDeptCd = userDeptCd;
- inValue.Body.pageCnt = pageCnt;
- inValue.Body.actKind = actKind;
- inValue.Body.clientType = clientType;
- inValue.Body.opRsrvNo = opRsrvNo;
- inValue.Body.fileSize = fileSize;
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SaveCompleteAll(inValue);
- return retVal.Body.SaveCompleteAllResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveDeleteResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SaveDelete(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveDeleteRequest request) {
- return base.Channel.SaveDelete(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveDelete(string userId, int consentMstRid, string patientCode, string clnDeptCode, string formCd, string vistType, string hosType, string clnDate, string reasonForUseN, string ocrCode, int cretno, string userDeptCd, string pageCnt, string actKind, string clientType) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveDeleteRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveDeleteRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveDeleteRequestBody();
- inValue.Body.userId = userId;
- inValue.Body.consentMstRid = consentMstRid;
- inValue.Body.patientCode = patientCode;
- inValue.Body.clnDeptCode = clnDeptCode;
- inValue.Body.formCd = formCd;
- inValue.Body.vistType = vistType;
- inValue.Body.hosType = hosType;
- inValue.Body.clnDate = clnDate;
- inValue.Body.reasonForUseN = reasonForUseN;
- inValue.Body.ocrCode = ocrCode;
- inValue.Body.cretno = cretno;
- inValue.Body.userDeptCd = userDeptCd;
- inValue.Body.pageCnt = pageCnt;
- inValue.Body.actKind = actKind;
- inValue.Body.clientType = clientType;
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveDeleteResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SaveDelete(inValue);
- return retVal.Body.SaveDeleteResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SavePrintOut(CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutRequest request) {
- return base.Channel.SavePrintOut(request);
- }
-
- public int SavePrintOut(
- string userId,
- string patientCode,
- string clnDeptCode,
- int formRid,
- string formCd,
- int consentMstRid,
- int reissueConsentMstRid,
- string formXml,
- string dataXml,
- string deviceType,
- string deviceIdentNo,
- string vistType,
- string hosType,
- string clnDate,
- string ward,
- string roomcd,
- int orderNo,
- string orderName,
- string orderCd,
- string ocrCode,
- int cretno,
- string createUserName,
- string modifyUserName,
- string mainDrId,
- string userDeptCd,
- string pageCnt,
- string actKind,
- string clientType,
- string opRsrvNo) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutRequestBody();
- inValue.Body.userId = userId;
- inValue.Body.patientCode = patientCode;
- inValue.Body.clnDeptCode = clnDeptCode;
- inValue.Body.formRid = formRid;
- inValue.Body.formCd = formCd;
- inValue.Body.consentMstRid = consentMstRid;
- inValue.Body.reissueConsentMstRid = reissueConsentMstRid;
- inValue.Body.formXml = formXml;
- inValue.Body.dataXml = dataXml;
- inValue.Body.deviceType = deviceType;
- inValue.Body.deviceIdentNo = deviceIdentNo;
- inValue.Body.vistType = vistType;
- inValue.Body.hosType = hosType;
- inValue.Body.clnDate = clnDate;
- inValue.Body.ward = ward;
- inValue.Body.roomcd = roomcd;
- inValue.Body.orderNo = orderNo;
- inValue.Body.orderName = orderName;
- inValue.Body.orderCd = orderCd;
- inValue.Body.ocrCode = ocrCode;
- inValue.Body.cretno = cretno;
- inValue.Body.createUserName = createUserName;
- inValue.Body.modifyUserName = modifyUserName;
- inValue.Body.mainDrId = mainDrId;
- inValue.Body.userDeptCd = userDeptCd;
- inValue.Body.pageCnt = pageCnt;
- inValue.Body.actKind = actKind;
- inValue.Body.clientType = clientType;
- inValue.Body.opRsrvNo = opRsrvNo;
- CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SavePrintOut(inValue);
- return retVal.Body.SavePrintOutResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SaveMedicalHistory(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryRequest request) {
- return base.Channel.SaveMedicalHistory(request);
- }
-
- public string SaveMedicalHistory(
- string patientCode,
- string clnDate,
- string bp,
- string dm,
- string heart,
- string kidney,
- string respiration,
- string hx,
- string allergy,
- string drug,
- string smoking,
- string idio,
- string nacrotics,
- string airway,
- string hemorrhage,
- string status_etc,
- string userId) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryRequestBody();
- inValue.Body.patientCode = patientCode;
- inValue.Body.clnDate = clnDate;
- inValue.Body.bp = bp;
- inValue.Body.dm = dm;
- inValue.Body.heart = heart;
- inValue.Body.kidney = kidney;
- inValue.Body.respiration = respiration;
- inValue.Body.hx = hx;
- inValue.Body.allergy = allergy;
- inValue.Body.drug = drug;
- inValue.Body.smoking = smoking;
- inValue.Body.idio = idio;
- inValue.Body.nacrotics = nacrotics;
- inValue.Body.airway = airway;
- inValue.Body.hemorrhage = hemorrhage;
- inValue.Body.status_etc = status_etc;
- inValue.Body.userId = userId;
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SaveMedicalHistory(inValue);
- return retVal.Body.SaveMedicalHistoryResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SaveImageUploadInfo(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoRequest request) {
- return base.Channel.SaveImageUploadInfo(request);
- }
-
- public int SaveImageUploadInfo(string consentState, string imageFileName, int consentMstRid, string userId, int formRid) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoRequestBody();
- inValue.Body.consentState = consentState;
- inValue.Body.imageFileName = imageFileName;
- inValue.Body.consentMstRid = consentMstRid;
- inValue.Body.userId = userId;
- inValue.Body.formRid = formRid;
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SaveImageUploadInfo(inValue);
- return retVal.Body.SaveImageUploadInfoResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SaveImageSignInfo(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoRequest request) {
- return base.Channel.SaveImageSignInfo(request);
- }
-
- public void SaveImageSignInfo(string consentState, int consentMstRid, int consentImageRid, string userId, string certTarget, string sCertResult) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoRequestBody();
- inValue.Body.consentState = consentState;
- inValue.Body.consentMstRid = consentMstRid;
- inValue.Body.consentImageRid = consentImageRid;
- inValue.Body.userId = userId;
- inValue.Body.certTarget = certTarget;
- inValue.Body.sCertResult = sCertResult;
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SaveImageSignInfo(inValue);
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.CheckConsentState(CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateRequest request) {
- return base.Channel.CheckConsentState(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData CheckConsentState(int consentmstrid, string consent_state) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateRequestBody();
- inValue.Body.consentmstrid = consentmstrid;
- inValue.Body.consent_state = consent_state;
- CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).CheckConsentState(inValue);
- return retVal.Body.CheckConsentStateResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getAgmtConsentDataResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.getAgmtConsentData(CLIP.eForm.Consent.UI.ConsentSvcRef.getAgmtConsentDataRequest request) {
- return base.Channel.getAgmtConsentData(request);
- }
-
- public string getAgmtConsentData(string instcd, string ocrtag) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.getAgmtConsentDataRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.getAgmtConsentDataRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.getAgmtConsentDataRequestBody();
- inValue.Body.instcd = instcd;
- inValue.Body.ocrtag = ocrtag;
- CLIP.eForm.Consent.UI.ConsentSvcRef.getAgmtConsentDataResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).getAgmtConsentData(inValue);
- return retVal.Body.getAgmtConsentDataResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.getOcrString(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringRequest request) {
- return base.Channel.getOcrString(request);
- }
-
- public string getOcrString(string formCd, string dutinstcd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringRequestBody();
- inValue.Body.formCd = formCd;
- inValue.Body.dutinstcd = dutinstcd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).getOcrString(inValue);
- return retVal.Body.getOcrStringResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.getCertUseYn(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnRequest request) {
- return base.Channel.getCertUseYn(request);
- }
-
- public string getCertUseYn(string formCd, string dutinstcd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnRequestBody();
- inValue.Body.formCd = formCd;
- inValue.Body.dutinstcd = dutinstcd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).getCertUseYn(inValue);
- return retVal.Body.getCertUseYnResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.getCertUseYnData(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataRequest request) {
- return base.Channel.getCertUseYnData(request);
- }
-
- public string getCertUseYnData(string formCd, string dutinstcd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataRequestBody();
- inValue.Body.formCd = formCd;
- inValue.Body.dutinstcd = dutinstcd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).getCertUseYnData(inValue);
- return retVal.Body.getCertUseYnDataResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.getDualViewMode(CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeRequest request) {
- return base.Channel.getDualViewMode(request);
- }
-
- public string getDualViewMode(string dutinstcd, string ipaddr) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeRequestBody();
- inValue.Body.dutinstcd = dutinstcd;
- inValue.Body.ipaddr = ipaddr;
- CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).getDualViewMode(inValue);
- return retVal.Body.getDualViewModeResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.updateCertifyComplete(CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteRequest request) {
- return base.Channel.updateCertifyComplete(request);
- }
-
- public string updateCertifyComplete(string consent_rids, string ocrtags, string instcd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteRequestBody();
- inValue.Body.consent_rids = consent_rids;
- inValue.Body.ocrtags = ocrtags;
- inValue.Body.instcd = instcd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).updateCertifyComplete(inValue);
- return retVal.Body.updateCertifyCompleteResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.updatePrintHistory(CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryRequest request) {
- return base.Channel.updatePrintHistory(request);
- }
-
- public void updatePrintHistory(string pid, string ocrtag, string instcd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryRequestBody();
- inValue.Body.pid = pid;
- inValue.Body.ocrtag = ocrtag;
- inValue.Body.instcd = instcd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).updatePrintHistory(inValue);
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.duplicateCertConsent(CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentRequest request) {
- return base.Channel.duplicateCertConsent(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData duplicateCertConsent(string pid, string instCd, string formCd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentRequestBody();
- inValue.Body.pid = pid;
- inValue.Body.instCd = instCd;
- inValue.Body.formCd = formCd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).duplicateCertConsent(inValue);
- return retVal.Body.duplicateCertConsentResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.checkJinJeongDocumentResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.checkJinJeongDocument(CLIP.eForm.Consent.UI.ConsentSvcRef.checkJinJeongDocumentRequest request) {
- return base.Channel.checkJinJeongDocument(request);
- }
-
- public int checkJinJeongDocument(string instcd, string formcd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.checkJinJeongDocumentRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.checkJinJeongDocumentRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.checkJinJeongDocumentRequestBody();
- inValue.Body.instcd = instcd;
- inValue.Body.formcd = formcd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.checkJinJeongDocumentResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).checkJinJeongDocument(inValue);
- return retVal.Body.checkJinJeongDocumentResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getLinkedAnstDocumentResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.getLinkedAnstDocument(CLIP.eForm.Consent.UI.ConsentSvcRef.getLinkedAnstDocumentRequest request) {
- return base.Channel.getLinkedAnstDocument(request);
- }
-
- public string getLinkedAnstDocument(string instcd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.getLinkedAnstDocumentRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.getLinkedAnstDocumentRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.getLinkedAnstDocumentRequestBody();
- inValue.Body.instcd = instcd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.getLinkedAnstDocumentResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).getLinkedAnstDocument(inValue);
- return retVal.Body.getLinkedAnstDocumentResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.checkOperationDocumentResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.checkOperationDocument(CLIP.eForm.Consent.UI.ConsentSvcRef.checkOperationDocumentRequest request) {
- return base.Channel.checkOperationDocument(request);
- }
-
- public string checkOperationDocument(string instcd, string formCd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.checkOperationDocumentRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.checkOperationDocumentRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.checkOperationDocumentRequestBody();
- inValue.Body.instcd = instcd;
- inValue.Body.formCd = formCd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.checkOperationDocumentResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).checkOperationDocument(inValue);
- return retVal.Body.checkOperationDocumentResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentFormXml(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlRequest request) {
- return base.Channel.GetConsentFormXml(request);
- }
-
- public string GetConsentFormXml(int consentMstRid) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlRequestBody();
- inValue.Body.consentMstRid = consentMstRid;
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentFormXml(inValue);
- return retVal.Body.GetConsentFormXmlResult;
- }
- }
- }
|