123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // 이 코드는 도구를 사용하여 생성되었습니다.
- // 런타임 버전:4.0.30319.42000
- //
- // 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면
- // 이러한 변경 내용이 손실됩니다.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace CLIP.eForm.Consent.UI.HospitalSvcRef {
- using System.Runtime.Serialization;
- using System;
-
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
- [System.Runtime.Serialization.DataContractAttribute(Name="SettingListVO", Namespace="http://tempuri.org/")]
- [System.SerializableAttribute()]
- public partial class SettingListVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
-
- [System.NonSerializedAttribute()]
- private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string keyNameField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string keyValueField;
-
- [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 keyName {
- get {
- return this.keyNameField;
- }
- set {
- if ((object.ReferenceEquals(this.keyNameField, value) != true)) {
- this.keyNameField = value;
- this.RaisePropertyChanged("keyName");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
- public string keyValue {
- get {
- return this.keyValueField;
- }
- set {
- if ((object.ReferenceEquals(this.keyValueField, value) != true)) {
- this.keyValueField = value;
- this.RaisePropertyChanged("keyValue");
- }
- }
- }
-
- 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="UserVO", Namespace="http://tempuri.org/")]
- [System.SerializableAttribute()]
- public partial class UserVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
-
- [System.NonSerializedAttribute()]
- private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string userIdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string userPasswdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string userNameField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string userDeptcdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string userDepthngnmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string userSupportDeptCdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string userSupportBaseCdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string userTelNoField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string jobKindCdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string jobKindNmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string ioFlagField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string drKindField;
-
- [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 userId {
- get {
- return this.userIdField;
- }
- set {
- if ((object.ReferenceEquals(this.userIdField, value) != true)) {
- this.userIdField = value;
- this.RaisePropertyChanged("userId");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
- public string userPasswd {
- get {
- return this.userPasswdField;
- }
- set {
- if ((object.ReferenceEquals(this.userPasswdField, value) != true)) {
- this.userPasswdField = value;
- this.RaisePropertyChanged("userPasswd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string userName {
- get {
- return this.userNameField;
- }
- set {
- if ((object.ReferenceEquals(this.userNameField, value) != true)) {
- this.userNameField = value;
- this.RaisePropertyChanged("userName");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string userDeptcd {
- get {
- return this.userDeptcdField;
- }
- set {
- if ((object.ReferenceEquals(this.userDeptcdField, value) != true)) {
- this.userDeptcdField = value;
- this.RaisePropertyChanged("userDeptcd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string userDepthngnm {
- get {
- return this.userDepthngnmField;
- }
- set {
- if ((object.ReferenceEquals(this.userDepthngnmField, value) != true)) {
- this.userDepthngnmField = value;
- this.RaisePropertyChanged("userDepthngnm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string userSupportDeptCd {
- get {
- return this.userSupportDeptCdField;
- }
- set {
- if ((object.ReferenceEquals(this.userSupportDeptCdField, value) != true)) {
- this.userSupportDeptCdField = value;
- this.RaisePropertyChanged("userSupportDeptCd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string userSupportBaseCd {
- get {
- return this.userSupportBaseCdField;
- }
- set {
- if ((object.ReferenceEquals(this.userSupportBaseCdField, value) != true)) {
- this.userSupportBaseCdField = value;
- this.RaisePropertyChanged("userSupportBaseCd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string userTelNo {
- get {
- return this.userTelNoField;
- }
- set {
- if ((object.ReferenceEquals(this.userTelNoField, value) != true)) {
- this.userTelNoField = value;
- this.RaisePropertyChanged("userTelNo");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
- public string jobKindCd {
- get {
- return this.jobKindCdField;
- }
- set {
- if ((object.ReferenceEquals(this.jobKindCdField, value) != true)) {
- this.jobKindCdField = value;
- this.RaisePropertyChanged("jobKindCd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
- public string jobKindNm {
- get {
- return this.jobKindNmField;
- }
- set {
- if ((object.ReferenceEquals(this.jobKindNmField, value) != true)) {
- this.jobKindNmField = value;
- this.RaisePropertyChanged("jobKindNm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
- public string ioFlag {
- get {
- return this.ioFlagField;
- }
- set {
- if ((object.ReferenceEquals(this.ioFlagField, value) != true)) {
- this.ioFlagField = value;
- this.RaisePropertyChanged("ioFlag");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
- public string drKind {
- get {
- return this.drKindField;
- }
- set {
- if ((object.ReferenceEquals(this.drKindField, value) != true)) {
- this.drKindField = value;
- this.RaisePropertyChanged("drKind");
- }
- }
- }
-
- 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="ClnDateForDropdownVO", Namespace="http://tempuri.org/")]
- [System.SerializableAttribute()]
- public partial class ClnDateForDropdownVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
-
- [System.NonSerializedAttribute()]
- private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string ClnDateField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string ClnFormatDateField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string VisitTypeField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string VisitTypeNameField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string ClnDeptCodeField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string ClnDeptNameField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string DeptCdField;
-
- private int CretNoField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string orddridField;
-
- [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 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)]
- public string ClnFormatDate {
- get {
- return this.ClnFormatDateField;
- }
- set {
- if ((object.ReferenceEquals(this.ClnFormatDateField, value) != true)) {
- this.ClnFormatDateField = value;
- this.RaisePropertyChanged("ClnFormatDate");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
- public string VisitType {
- get {
- return this.VisitTypeField;
- }
- set {
- if ((object.ReferenceEquals(this.VisitTypeField, value) != true)) {
- this.VisitTypeField = value;
- this.RaisePropertyChanged("VisitType");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
- public string VisitTypeName {
- get {
- return this.VisitTypeNameField;
- }
- set {
- if ((object.ReferenceEquals(this.VisitTypeNameField, value) != true)) {
- this.VisitTypeNameField = value;
- this.RaisePropertyChanged("VisitTypeName");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string ClnDeptCode {
- get {
- return this.ClnDeptCodeField;
- }
- set {
- if ((object.ReferenceEquals(this.ClnDeptCodeField, value) != true)) {
- this.ClnDeptCodeField = value;
- this.RaisePropertyChanged("ClnDeptCode");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string ClnDeptName {
- get {
- return this.ClnDeptNameField;
- }
- set {
- if ((object.ReferenceEquals(this.ClnDeptNameField, value) != true)) {
- this.ClnDeptNameField = value;
- this.RaisePropertyChanged("ClnDeptName");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string DeptCd {
- get {
- return this.DeptCdField;
- }
- set {
- if ((object.ReferenceEquals(this.DeptCdField, value) != true)) {
- this.DeptCdField = value;
- this.RaisePropertyChanged("DeptCd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=7)]
- 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=8)]
- public string orddrid {
- get {
- return this.orddridField;
- }
- set {
- if ((object.ReferenceEquals(this.orddridField, value) != true)) {
- this.orddridField = value;
- this.RaisePropertyChanged("orddrid");
- }
- }
- }
-
- 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="PatListVO", Namespace="http://tempuri.org/")]
- [System.SerializableAttribute()]
- public partial class PatListVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
-
- [System.NonSerializedAttribute()]
- private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string pidField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string inDdField;
-
- private int cretNoField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string hngNmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string ordDeptCdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string saField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string deptNmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string doctorNmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string roomCdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string ordTypeField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string erOrdDeptNmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string erMedispclNmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string erOrdDeptCdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string ordTmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string opRoomNmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string opDateField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string opRsrvNoField;
-
- [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 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=1)]
- public string inDd {
- get {
- return this.inDdField;
- }
- set {
- if ((object.ReferenceEquals(this.inDdField, value) != true)) {
- this.inDdField = value;
- this.RaisePropertyChanged("inDd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=2)]
- 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=3)]
- public string hngNm {
- get {
- return this.hngNmField;
- }
- set {
- if ((object.ReferenceEquals(this.hngNmField, value) != true)) {
- this.hngNmField = value;
- this.RaisePropertyChanged("hngNm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string ordDeptCd {
- get {
- return this.ordDeptCdField;
- }
- set {
- if ((object.ReferenceEquals(this.ordDeptCdField, value) != true)) {
- this.ordDeptCdField = value;
- this.RaisePropertyChanged("ordDeptCd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string sa {
- get {
- return this.saField;
- }
- set {
- if ((object.ReferenceEquals(this.saField, value) != true)) {
- this.saField = value;
- this.RaisePropertyChanged("sa");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string deptNm {
- get {
- return this.deptNmField;
- }
- set {
- if ((object.ReferenceEquals(this.deptNmField, value) != true)) {
- this.deptNmField = value;
- this.RaisePropertyChanged("deptNm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string doctorNm {
- get {
- return this.doctorNmField;
- }
- set {
- if ((object.ReferenceEquals(this.doctorNmField, value) != true)) {
- this.doctorNmField = value;
- this.RaisePropertyChanged("doctorNm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
- 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=9)]
- 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=10)]
- public string erOrdDeptNm {
- get {
- return this.erOrdDeptNmField;
- }
- set {
- if ((object.ReferenceEquals(this.erOrdDeptNmField, value) != true)) {
- this.erOrdDeptNmField = value;
- this.RaisePropertyChanged("erOrdDeptNm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
- public string erMedispclNm {
- get {
- return this.erMedispclNmField;
- }
- set {
- if ((object.ReferenceEquals(this.erMedispclNmField, value) != true)) {
- this.erMedispclNmField = value;
- this.RaisePropertyChanged("erMedispclNm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
- public string erOrdDeptCd {
- get {
- return this.erOrdDeptCdField;
- }
- set {
- if ((object.ReferenceEquals(this.erOrdDeptCdField, value) != true)) {
- this.erOrdDeptCdField = value;
- this.RaisePropertyChanged("erOrdDeptCd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
- public string ordTm {
- get {
- return this.ordTmField;
- }
- set {
- if ((object.ReferenceEquals(this.ordTmField, value) != true)) {
- this.ordTmField = value;
- this.RaisePropertyChanged("ordTm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
- public string opRoomNm {
- get {
- return this.opRoomNmField;
- }
- set {
- if ((object.ReferenceEquals(this.opRoomNmField, value) != true)) {
- this.opRoomNmField = value;
- this.RaisePropertyChanged("opRoomNm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
- public string opDate {
- get {
- return this.opDateField;
- }
- set {
- if ((object.ReferenceEquals(this.opDateField, value) != true)) {
- this.opDateField = value;
- this.RaisePropertyChanged("opDate");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=16)]
- public string opRsrvNo {
- get {
- return this.opRsrvNoField;
- }
- set {
- if ((object.ReferenceEquals(this.opRsrvNoField, value) != true)) {
- this.opRsrvNoField = value;
- this.RaisePropertyChanged("opRsrvNo");
- }
- }
- }
-
- 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="DeptListVO", Namespace="http://tempuri.org/")]
- [System.SerializableAttribute()]
- public partial class DeptListVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
-
- [System.NonSerializedAttribute()]
- private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string deptCdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string deptNmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string deptAbbrField;
-
- private int sortField;
-
- [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 deptCd {
- get {
- return this.deptCdField;
- }
- set {
- if ((object.ReferenceEquals(this.deptCdField, value) != true)) {
- this.deptCdField = value;
- this.RaisePropertyChanged("deptCd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
- public string deptNm {
- get {
- return this.deptNmField;
- }
- set {
- if ((object.ReferenceEquals(this.deptNmField, value) != true)) {
- this.deptNmField = value;
- this.RaisePropertyChanged("deptNm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string deptAbbr {
- get {
- return this.deptAbbrField;
- }
- set {
- if ((object.ReferenceEquals(this.deptAbbrField, value) != true)) {
- this.deptAbbrField = value;
- this.RaisePropertyChanged("deptAbbr");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=3)]
- public int sort {
- get {
- return this.sortField;
- }
- set {
- if ((this.sortField.Equals(value) != true)) {
- this.sortField = value;
- this.RaisePropertyChanged("sort");
- }
- }
- }
-
- 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="DocListVO", Namespace="http://tempuri.org/")]
- [System.SerializableAttribute()]
- public partial class DocListVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
-
- [System.NonSerializedAttribute()]
- private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string doctorIdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string doctorNmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string drKindField;
-
- [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 doctorId {
- get {
- return this.doctorIdField;
- }
- set {
- if ((object.ReferenceEquals(this.doctorIdField, value) != true)) {
- this.doctorIdField = value;
- this.RaisePropertyChanged("doctorId");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
- public string doctorNm {
- get {
- return this.doctorNmField;
- }
- set {
- if ((object.ReferenceEquals(this.doctorNmField, value) != true)) {
- this.doctorNmField = value;
- this.RaisePropertyChanged("doctorNm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
- public string drKind {
- get {
- return this.drKindField;
- }
- set {
- if ((object.ReferenceEquals(this.drKindField, value) != true)) {
- this.drKindField = value;
- this.RaisePropertyChanged("drKind");
- }
- }
- }
-
- 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="InspectionVO", Namespace="http://tempuri.org/")]
- [System.SerializableAttribute()]
- public partial class InspectionVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
-
- [System.NonSerializedAttribute()]
- private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string baseCdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string supportDeptCdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string supportDeptNmField;
-
- [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 baseCd {
- get {
- return this.baseCdField;
- }
- set {
- if ((object.ReferenceEquals(this.baseCdField, value) != true)) {
- this.baseCdField = value;
- this.RaisePropertyChanged("baseCd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
- public string supportDeptCd {
- get {
- return this.supportDeptCdField;
- }
- set {
- if ((object.ReferenceEquals(this.supportDeptCdField, value) != true)) {
- this.supportDeptCdField = value;
- this.RaisePropertyChanged("supportDeptCd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
- public string supportDeptNm {
- get {
- return this.supportDeptNmField;
- }
- set {
- if ((object.ReferenceEquals(this.supportDeptNmField, value) != true)) {
- this.supportDeptNmField = value;
- this.RaisePropertyChanged("supportDeptNm");
- }
- }
- }
-
- 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="PatInfoListVO", Namespace="http://tempuri.org/")]
- [System.SerializableAttribute()]
- public partial class PatInfoListVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
-
- [System.NonSerializedAttribute()]
- private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string pidField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string hngnmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string rrgstno1Field;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string rrgstno2Field;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string ageField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string mpphontelField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string addrField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string lastordddField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string lastorddeptField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string lastinsukindField;
-
- [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 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=1)]
- public string hngnm {
- get {
- return this.hngnmField;
- }
- set {
- if ((object.ReferenceEquals(this.hngnmField, value) != true)) {
- this.hngnmField = value;
- this.RaisePropertyChanged("hngnm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string rrgstno1 {
- get {
- return this.rrgstno1Field;
- }
- set {
- if ((object.ReferenceEquals(this.rrgstno1Field, value) != true)) {
- this.rrgstno1Field = value;
- this.RaisePropertyChanged("rrgstno1");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string rrgstno2 {
- get {
- return this.rrgstno2Field;
- }
- set {
- if ((object.ReferenceEquals(this.rrgstno2Field, value) != true)) {
- this.rrgstno2Field = value;
- this.RaisePropertyChanged("rrgstno2");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string age {
- get {
- return this.ageField;
- }
- set {
- if ((object.ReferenceEquals(this.ageField, value) != true)) {
- this.ageField = value;
- this.RaisePropertyChanged("age");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string mpphontel {
- get {
- return this.mpphontelField;
- }
- set {
- if ((object.ReferenceEquals(this.mpphontelField, value) != true)) {
- this.mpphontelField = value;
- this.RaisePropertyChanged("mpphontel");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string addr {
- get {
- return this.addrField;
- }
- set {
- if ((object.ReferenceEquals(this.addrField, value) != true)) {
- this.addrField = value;
- this.RaisePropertyChanged("addr");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string lastorddd {
- get {
- return this.lastordddField;
- }
- set {
- if ((object.ReferenceEquals(this.lastordddField, value) != true)) {
- this.lastordddField = value;
- this.RaisePropertyChanged("lastorddd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
- public string lastorddept {
- get {
- return this.lastorddeptField;
- }
- set {
- if ((object.ReferenceEquals(this.lastorddeptField, value) != true)) {
- this.lastorddeptField = value;
- this.RaisePropertyChanged("lastorddept");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
- public string lastinsukind {
- get {
- return this.lastinsukindField;
- }
- set {
- if ((object.ReferenceEquals(this.lastinsukindField, value) != true)) {
- this.lastinsukindField = value;
- this.RaisePropertyChanged("lastinsukind");
- }
- }
- }
-
- 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="PatientVO", Namespace="http://tempuri.org/")]
- [System.SerializableAttribute()]
- public partial class PatientVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
-
- [System.NonSerializedAttribute()]
- private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string ordDeptCdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string pidField;
-
- private int cretNoField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string saField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string patientNameField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string juminNoField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string patientAddrField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string patientMobileNoField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string patientTelNoField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string wardField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string roomCdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string inDdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string dSchDdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string ordTypeField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string deptEngNmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string deptNmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string opDeptCdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string opDeptNmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string opDoctorNmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string opDoctorIdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string diagHngNmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string mainDrIdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string mainDrNmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string patientAlertField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string opCnFmDdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string opNmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string opremFactField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string anstDrNmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string anstDeptNmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string opRsrvNoField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string patientBirthDdField;
-
- [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 ordDeptCd {
- get {
- return this.ordDeptCdField;
- }
- set {
- if ((object.ReferenceEquals(this.ordDeptCdField, value) != true)) {
- this.ordDeptCdField = value;
- this.RaisePropertyChanged("ordDeptCd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
- 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(IsRequired=true, Order=2)]
- 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=3)]
- public string sa {
- get {
- return this.saField;
- }
- set {
- if ((object.ReferenceEquals(this.saField, value) != true)) {
- this.saField = value;
- this.RaisePropertyChanged("sa");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- 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=5)]
- public string juminNo {
- get {
- return this.juminNoField;
- }
- set {
- if ((object.ReferenceEquals(this.juminNoField, value) != true)) {
- this.juminNoField = value;
- this.RaisePropertyChanged("juminNo");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string patientAddr {
- get {
- return this.patientAddrField;
- }
- set {
- if ((object.ReferenceEquals(this.patientAddrField, value) != true)) {
- this.patientAddrField = value;
- this.RaisePropertyChanged("patientAddr");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string patientMobileNo {
- get {
- return this.patientMobileNoField;
- }
- set {
- if ((object.ReferenceEquals(this.patientMobileNoField, value) != true)) {
- this.patientMobileNoField = value;
- this.RaisePropertyChanged("patientMobileNo");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
- public string patientTelNo {
- get {
- return this.patientTelNoField;
- }
- set {
- if ((object.ReferenceEquals(this.patientTelNoField, value) != true)) {
- this.patientTelNoField = value;
- this.RaisePropertyChanged("patientTelNo");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
- public string ward {
- get {
- return this.wardField;
- }
- set {
- if ((object.ReferenceEquals(this.wardField, value) != true)) {
- this.wardField = value;
- this.RaisePropertyChanged("ward");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
- 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=11)]
- public string inDd {
- get {
- return this.inDdField;
- }
- set {
- if ((object.ReferenceEquals(this.inDdField, value) != true)) {
- this.inDdField = value;
- this.RaisePropertyChanged("inDd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
- public string dSchDd {
- get {
- return this.dSchDdField;
- }
- set {
- if ((object.ReferenceEquals(this.dSchDdField, value) != true)) {
- this.dSchDdField = value;
- this.RaisePropertyChanged("dSchDd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
- 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=14)]
- public string deptEngNm {
- get {
- return this.deptEngNmField;
- }
- set {
- if ((object.ReferenceEquals(this.deptEngNmField, value) != true)) {
- this.deptEngNmField = value;
- this.RaisePropertyChanged("deptEngNm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
- public string deptNm {
- get {
- return this.deptNmField;
- }
- set {
- if ((object.ReferenceEquals(this.deptNmField, value) != true)) {
- this.deptNmField = value;
- this.RaisePropertyChanged("deptNm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=16)]
- public string opDeptCd {
- get {
- return this.opDeptCdField;
- }
- set {
- if ((object.ReferenceEquals(this.opDeptCdField, value) != true)) {
- this.opDeptCdField = value;
- this.RaisePropertyChanged("opDeptCd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=17)]
- public string opDeptNm {
- get {
- return this.opDeptNmField;
- }
- set {
- if ((object.ReferenceEquals(this.opDeptNmField, value) != true)) {
- this.opDeptNmField = value;
- this.RaisePropertyChanged("opDeptNm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=18)]
- public string opDoctorNm {
- get {
- return this.opDoctorNmField;
- }
- set {
- if ((object.ReferenceEquals(this.opDoctorNmField, value) != true)) {
- this.opDoctorNmField = value;
- this.RaisePropertyChanged("opDoctorNm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=19)]
- public string opDoctorId {
- get {
- return this.opDoctorIdField;
- }
- set {
- if ((object.ReferenceEquals(this.opDoctorIdField, value) != true)) {
- this.opDoctorIdField = value;
- this.RaisePropertyChanged("opDoctorId");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=20)]
- public string diagHngNm {
- get {
- return this.diagHngNmField;
- }
- set {
- if ((object.ReferenceEquals(this.diagHngNmField, value) != true)) {
- this.diagHngNmField = value;
- this.RaisePropertyChanged("diagHngNm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=21)]
- 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=22)]
- public string mainDrNm {
- get {
- return this.mainDrNmField;
- }
- set {
- if ((object.ReferenceEquals(this.mainDrNmField, value) != true)) {
- this.mainDrNmField = value;
- this.RaisePropertyChanged("mainDrNm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=23)]
- public string patientAlert {
- get {
- return this.patientAlertField;
- }
- set {
- if ((object.ReferenceEquals(this.patientAlertField, value) != true)) {
- this.patientAlertField = value;
- this.RaisePropertyChanged("patientAlert");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=24)]
- public string opCnFmDd {
- get {
- return this.opCnFmDdField;
- }
- set {
- if ((object.ReferenceEquals(this.opCnFmDdField, value) != true)) {
- this.opCnFmDdField = value;
- this.RaisePropertyChanged("opCnFmDd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=25)]
- public string opNm {
- get {
- return this.opNmField;
- }
- set {
- if ((object.ReferenceEquals(this.opNmField, value) != true)) {
- this.opNmField = value;
- this.RaisePropertyChanged("opNm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=26)]
- public string opremFact {
- get {
- return this.opremFactField;
- }
- set {
- if ((object.ReferenceEquals(this.opremFactField, value) != true)) {
- this.opremFactField = value;
- this.RaisePropertyChanged("opremFact");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=27)]
- public string anstDrNm {
- get {
- return this.anstDrNmField;
- }
- set {
- if ((object.ReferenceEquals(this.anstDrNmField, value) != true)) {
- this.anstDrNmField = value;
- this.RaisePropertyChanged("anstDrNm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=28)]
- public string anstDeptNm {
- get {
- return this.anstDeptNmField;
- }
- set {
- if ((object.ReferenceEquals(this.anstDeptNmField, value) != true)) {
- this.anstDeptNmField = value;
- this.RaisePropertyChanged("anstDeptNm");
- }
- }
- }
-
- [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 patientBirthDd {
- get {
- return this.patientBirthDdField;
- }
- set {
- if ((object.ReferenceEquals(this.patientBirthDdField, value) != true)) {
- this.patientBirthDdField = value;
- this.RaisePropertyChanged("patientBirthDd");
- }
- }
- }
-
- 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.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
- [System.Runtime.Serialization.DataContractAttribute(Name="UserSignImageVO", Namespace="http://tempuri.org/")]
- [System.SerializableAttribute()]
- public partial class UserSignImageVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
-
- [System.NonSerializedAttribute()]
- private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private byte[] SignImageField;
-
- [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 byte[] SignImage {
- get {
- return this.SignImageField;
- }
- set {
- if ((object.ReferenceEquals(this.SignImageField, value) != true)) {
- this.SignImageField = value;
- this.RaisePropertyChanged("SignImage");
- }
- }
- }
-
- 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.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="UserLoginDeptList", Namespace="http://tempuri.org/")]
- [System.SerializableAttribute()]
- public partial class UserLoginDeptList : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
-
- [System.NonSerializedAttribute()]
- private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string dutPlceCdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string deptHngNmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string jobKindCdField;
-
- private int sortNoField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string indexPageField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string userIdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string userNameField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string supportDeptCdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string baseCdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string drKindField;
-
- [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 dutPlceCd {
- get {
- return this.dutPlceCdField;
- }
- set {
- if ((object.ReferenceEquals(this.dutPlceCdField, value) != true)) {
- this.dutPlceCdField = value;
- this.RaisePropertyChanged("dutPlceCd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string deptHngNm {
- get {
- return this.deptHngNmField;
- }
- set {
- if ((object.ReferenceEquals(this.deptHngNmField, value) != true)) {
- this.deptHngNmField = value;
- this.RaisePropertyChanged("deptHngNm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string jobKindCd {
- get {
- return this.jobKindCdField;
- }
- set {
- if ((object.ReferenceEquals(this.jobKindCdField, value) != true)) {
- this.jobKindCdField = value;
- this.RaisePropertyChanged("jobKindCd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=3)]
- public int sortNo {
- get {
- return this.sortNoField;
- }
- set {
- if ((this.sortNoField.Equals(value) != true)) {
- this.sortNoField = value;
- this.RaisePropertyChanged("sortNo");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string indexPage {
- get {
- return this.indexPageField;
- }
- set {
- if ((object.ReferenceEquals(this.indexPageField, value) != true)) {
- this.indexPageField = value;
- this.RaisePropertyChanged("indexPage");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string userId {
- get {
- return this.userIdField;
- }
- set {
- if ((object.ReferenceEquals(this.userIdField, value) != true)) {
- this.userIdField = value;
- this.RaisePropertyChanged("userId");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string userName {
- get {
- return this.userNameField;
- }
- set {
- if ((object.ReferenceEquals(this.userNameField, value) != true)) {
- this.userNameField = value;
- this.RaisePropertyChanged("userName");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string supportDeptCd {
- get {
- return this.supportDeptCdField;
- }
- set {
- if ((object.ReferenceEquals(this.supportDeptCdField, value) != true)) {
- this.supportDeptCdField = value;
- this.RaisePropertyChanged("supportDeptCd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
- public string baseCd {
- get {
- return this.baseCdField;
- }
- set {
- if ((object.ReferenceEquals(this.baseCdField, value) != true)) {
- this.baseCdField = value;
- this.RaisePropertyChanged("baseCd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
- public string drKind {
- get {
- return this.drKindField;
- }
- set {
- if ((object.ReferenceEquals(this.drKindField, value) != true)) {
- this.drKindField = value;
- this.RaisePropertyChanged("drKind");
- }
- }
- }
-
- 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="MobileUserInfo", Namespace="http://tempuri.org/")]
- [System.SerializableAttribute()]
- public partial class MobileUserInfo : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
-
- [System.NonSerializedAttribute()]
- private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string useridField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string usernmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string dutplcecdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string deptengnmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string dutplceinstcdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string dutplceinstnmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string jobkindcdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string jobkindnmField;
-
- [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 userid {
- get {
- return this.useridField;
- }
- set {
- if ((object.ReferenceEquals(this.useridField, value) != true)) {
- this.useridField = value;
- this.RaisePropertyChanged("userid");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
- public string usernm {
- get {
- return this.usernmField;
- }
- set {
- if ((object.ReferenceEquals(this.usernmField, value) != true)) {
- this.usernmField = value;
- this.RaisePropertyChanged("usernm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string dutplcecd {
- get {
- return this.dutplcecdField;
- }
- set {
- if ((object.ReferenceEquals(this.dutplcecdField, value) != true)) {
- this.dutplcecdField = value;
- this.RaisePropertyChanged("dutplcecd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string deptengnm {
- get {
- return this.deptengnmField;
- }
- set {
- if ((object.ReferenceEquals(this.deptengnmField, value) != true)) {
- this.deptengnmField = value;
- this.RaisePropertyChanged("deptengnm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string dutplceinstcd {
- get {
- return this.dutplceinstcdField;
- }
- set {
- if ((object.ReferenceEquals(this.dutplceinstcdField, value) != true)) {
- this.dutplceinstcdField = value;
- this.RaisePropertyChanged("dutplceinstcd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string dutplceinstnm {
- get {
- return this.dutplceinstnmField;
- }
- set {
- if ((object.ReferenceEquals(this.dutplceinstnmField, value) != true)) {
- this.dutplceinstnmField = value;
- this.RaisePropertyChanged("dutplceinstnm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string jobkindcd {
- get {
- return this.jobkindcdField;
- }
- set {
- if ((object.ReferenceEquals(this.jobkindcdField, value) != true)) {
- this.jobkindcdField = value;
- this.RaisePropertyChanged("jobkindcd");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string jobkindnm {
- get {
- return this.jobkindnmField;
- }
- set {
- if ((object.ReferenceEquals(this.jobkindnmField, value) != true)) {
- this.jobkindnmField = value;
- this.RaisePropertyChanged("jobkindnm");
- }
- }
- }
-
- 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="HospitalSvcRef.HospitalSvcSoap")]
- public interface HospitalSvcSoap {
-
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/CheckWebService", ReplyAction="*")]
- bool CheckWebService();
-
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/CheckDatabaseConnection", ReplyAction="*")]
- bool CheckDatabaseConnection();
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 GetSettingDataResult이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetSettingData", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataResponse GetSettingData(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetUserInfo", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoResponse GetUserInfo(CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 patientNo이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetTrmtDateList", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListResponse GetTrmtDateList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 selectFlag이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetPatientList", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListResponse GetPatientList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 selectFlag이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetPatientExList", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListResponse GetPatientExList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 selectFlag이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetPatientExListPC", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCResponse GetPatientExListPC(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 selectFlag이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetPatientExPCList", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListResponse GetPatientExPCList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 ordType이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetDeptList", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListResponse GetDeptList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 ordType이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetOrgDeptList", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListResponse GetOrgDeptList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 dutInstCd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetWardList", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListResponse GetWardList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 srchDd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetDoctorList", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListResponse GetDoctorList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 GetSupportDeptListResult이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetSupportDeptList", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListResponse GetSupportDeptList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 deptCd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetInspectingRoomName", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameResponse GetInspectingRoomName(CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 srchcond이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetSrchPatInfo", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoResponse GetSrchPatInfo(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 pid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetPatientInfo", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoResponse GetPatientInfo(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SetUserFormSetList", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListResponse SetUserFormSetList(CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 idx이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/DelUserFormSetList", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListResponse DelUserFormSetList(CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 GetOcrTagResult이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetOcrTag", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagResponse GetOcrTag(CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetSignImage", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageResponse GetSignImage(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 pid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetDiagNameList", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListResponse GetDiagNameList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 pid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetFileName", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameResponse GetFileName(CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 pid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/delEformData", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataResponse delEformData(CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/UpdateUserSetup", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupResponse UpdateUserSetup(CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/doLogin", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginResponse doLogin(CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/userLoginOutLog", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogResponse userLoginOutLog(CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetMobileUserInfo", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoResponse GetMobileUserInfo(CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getUserPrefMonitor", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorResponse getUserPrefMonitor(CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SetSupportUserData", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataResponse SetSupportUserData(CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SetUserPrefMonitor", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorResponse SetUserPrefMonitor(CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 instcd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getSessionTime", ReplyAction="*")]
- CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeResponse getSessionTime(CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeRequest 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 GetSettingDataRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetSettingData", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataRequestBody Body;
-
- public GetSettingDataRequest() {
- }
-
- public GetSettingDataRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataRequestBody 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 GetSettingDataRequestBody {
-
- public GetSettingDataRequestBody() {
- }
- }
-
- [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 GetSettingDataResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetSettingDataResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataResponseBody Body;
-
- public GetSettingDataResponse() {
- }
-
- public GetSettingDataResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataResponseBody 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 GetSettingDataResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.SettingListVO[] GetSettingDataResult;
-
- public GetSettingDataResponseBody() {
- }
-
- public GetSettingDataResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.SettingListVO[] GetSettingDataResult) {
- this.GetSettingDataResult = GetSettingDataResult;
- }
- }
-
- [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 GetUserInfoRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetUserInfo", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoRequestBody Body;
-
- public GetUserInfoRequest() {
- }
-
- public GetUserInfoRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoRequestBody 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 GetUserInfoRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string userid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string dutinstcd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string dutplcecd;
-
- public GetUserInfoRequestBody() {
- }
-
- public GetUserInfoRequestBody(string userid, string dutinstcd, string dutplcecd) {
- this.userid = userid;
- this.dutinstcd = dutinstcd;
- this.dutplcecd = dutplcecd;
- }
- }
-
- [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 GetUserInfoResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetUserInfoResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoResponseBody Body;
-
- public GetUserInfoResponse() {
- }
-
- public GetUserInfoResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoResponseBody 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 GetUserInfoResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.UserVO GetUserInfoResult;
-
- public GetUserInfoResponseBody() {
- }
-
- public GetUserInfoResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.UserVO GetUserInfoResult) {
- this.GetUserInfoResult = GetUserInfoResult;
- }
- }
-
- [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 GetTrmtDateListRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetTrmtDateList", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListRequestBody Body;
-
- public GetTrmtDateListRequest() {
- }
-
- public GetTrmtDateListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListRequestBody 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 GetTrmtDateListRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string patientNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string searchClnDate;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string searchType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string orddeptcd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string dutinstcd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string ordType;
-
- public GetTrmtDateListRequestBody() {
- }
-
- public GetTrmtDateListRequestBody(string patientNo, string searchClnDate, string searchType, string orddeptcd, string dutinstcd, string ordType) {
- this.patientNo = patientNo;
- this.searchClnDate = searchClnDate;
- this.searchType = searchType;
- this.orddeptcd = orddeptcd;
- this.dutinstcd = dutinstcd;
- this.ordType = ordType;
- }
- }
-
- [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 GetTrmtDateListResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetTrmtDateListResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListResponseBody Body;
-
- public GetTrmtDateListResponse() {
- }
-
- public GetTrmtDateListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListResponseBody 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 GetTrmtDateListResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.ClnDateForDropdownVO[] GetTrmtDateListResult;
-
- public GetTrmtDateListResponseBody() {
- }
-
- public GetTrmtDateListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.ClnDateForDropdownVO[] GetTrmtDateListResult) {
- this.GetTrmtDateListResult = GetTrmtDateListResult;
- }
- }
-
- [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 GetPatientListRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPatientList", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListRequestBody Body;
-
- public GetPatientListRequest() {
- }
-
- public GetPatientListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListRequestBody 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 GetPatientListRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string selectFlag;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string srchYN;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string srchDd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string ordDeptCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string doctorId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string pid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string wardCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string patientState;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
- public string dutInstCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
- public string myPatient;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
- public string drKind;
-
- public GetPatientListRequestBody() {
- }
-
- public GetPatientListRequestBody(string selectFlag, string srchYN, string srchDd, string ordDeptCd, string doctorId, string pid, string wardCd, string patientState, string dutInstCd, string userId, string myPatient, string drKind) {
- this.selectFlag = selectFlag;
- this.srchYN = srchYN;
- this.srchDd = srchDd;
- this.ordDeptCd = ordDeptCd;
- this.doctorId = doctorId;
- this.pid = pid;
- this.wardCd = wardCd;
- this.patientState = patientState;
- this.dutInstCd = dutInstCd;
- this.userId = userId;
- this.myPatient = myPatient;
- this.drKind = drKind;
- }
- }
-
- [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 GetPatientListResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPatientListResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListResponseBody Body;
-
- public GetPatientListResponse() {
- }
-
- public GetPatientListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListResponseBody 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 GetPatientListResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientListResult;
-
- public GetPatientListResponseBody() {
- }
-
- public GetPatientListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientListResult) {
- this.GetPatientListResult = GetPatientListResult;
- }
- }
-
- [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 GetPatientExListRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPatientExList", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListRequestBody Body;
-
- public GetPatientExListRequest() {
- }
-
- public GetPatientExListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListRequestBody 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 GetPatientExListRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string selectFlag;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string toDt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string fromDt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string baseCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string supportDeptCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string pid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string patientState;
-
- public GetPatientExListRequestBody() {
- }
-
- public GetPatientExListRequestBody(string selectFlag, string toDt, string fromDt, string baseCd, string supportDeptCd, string pid, string patientState) {
- this.selectFlag = selectFlag;
- this.toDt = toDt;
- this.fromDt = fromDt;
- this.baseCd = baseCd;
- this.supportDeptCd = supportDeptCd;
- this.pid = pid;
- this.patientState = patientState;
- }
- }
-
- [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 GetPatientExListResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPatientExListResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListResponseBody Body;
-
- public GetPatientExListResponse() {
- }
-
- public GetPatientExListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListResponseBody 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 GetPatientExListResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientExListResult;
-
- public GetPatientExListResponseBody() {
- }
-
- public GetPatientExListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientExListResult) {
- this.GetPatientExListResult = GetPatientExListResult;
- }
- }
-
- [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 GetPatientExListPCRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPatientExListPC", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCRequestBody Body;
-
- public GetPatientExListPCRequest() {
- }
-
- public GetPatientExListPCRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCRequestBody 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 GetPatientExListPCRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string selectFlag;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string toDt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string fromDt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string baseCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string supportDeptCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string pid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string patientState;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string isMainD;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
- public string mainDrId;
-
- public GetPatientExListPCRequestBody() {
- }
-
- public GetPatientExListPCRequestBody(string selectFlag, string toDt, string fromDt, string baseCd, string supportDeptCd, string pid, string patientState, string isMainD, string mainDrId) {
- this.selectFlag = selectFlag;
- this.toDt = toDt;
- this.fromDt = fromDt;
- this.baseCd = baseCd;
- this.supportDeptCd = supportDeptCd;
- this.pid = pid;
- this.patientState = patientState;
- this.isMainD = isMainD;
- this.mainDrId = mainDrId;
- }
- }
-
- [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 GetPatientExListPCResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPatientExListPCResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCResponseBody Body;
-
- public GetPatientExListPCResponse() {
- }
-
- public GetPatientExListPCResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCResponseBody 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 GetPatientExListPCResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientExListPCResult;
-
- public GetPatientExListPCResponseBody() {
- }
-
- public GetPatientExListPCResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientExListPCResult) {
- this.GetPatientExListPCResult = GetPatientExListPCResult;
- }
- }
-
- [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 GetPatientExPCListRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPatientExPCList", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListRequestBody Body;
-
- public GetPatientExPCListRequest() {
- }
-
- public GetPatientExPCListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListRequestBody 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 GetPatientExPCListRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string selectFlag;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string toDt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string fromDt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string baseCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string supportDeptCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string pid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string patientState;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string isMainD;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
- public string mainDrId;
-
- public GetPatientExPCListRequestBody() {
- }
-
- public GetPatientExPCListRequestBody(string selectFlag, string toDt, string fromDt, string baseCd, string supportDeptCd, string pid, string patientState, string isMainD, string mainDrId) {
- this.selectFlag = selectFlag;
- this.toDt = toDt;
- this.fromDt = fromDt;
- this.baseCd = baseCd;
- this.supportDeptCd = supportDeptCd;
- this.pid = pid;
- this.patientState = patientState;
- this.isMainD = isMainD;
- this.mainDrId = mainDrId;
- }
- }
-
- [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 GetPatientExPCListResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPatientExPCListResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListResponseBody Body;
-
- public GetPatientExPCListResponse() {
- }
-
- public GetPatientExPCListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListResponseBody 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 GetPatientExPCListResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientExPCListResult;
-
- public GetPatientExPCListResponseBody() {
- }
-
- public GetPatientExPCListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientExPCListResult) {
- this.GetPatientExPCListResult = GetPatientExPCListResult;
- }
- }
-
- [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 GetDeptListRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetDeptList", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListRequestBody Body;
-
- public GetDeptListRequest() {
- }
-
- public GetDeptListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListRequestBody 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 GetDeptListRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string ordType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string dutInstCd;
-
- public GetDeptListRequestBody() {
- }
-
- public GetDeptListRequestBody(string ordType, string dutInstCd) {
- this.ordType = ordType;
- 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 GetDeptListResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetDeptListResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListResponseBody Body;
-
- public GetDeptListResponse() {
- }
-
- public GetDeptListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListResponseBody 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 GetDeptListResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetDeptListResult;
-
- public GetDeptListResponseBody() {
- }
-
- public GetDeptListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetDeptListResult) {
- this.GetDeptListResult = GetDeptListResult;
- }
- }
-
- [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 GetOrgDeptListRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetOrgDeptList", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListRequestBody Body;
-
- public GetOrgDeptListRequest() {
- }
-
- public GetOrgDeptListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListRequestBody 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 GetOrgDeptListRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string ordType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string dutInstCd;
-
- public GetOrgDeptListRequestBody() {
- }
-
- public GetOrgDeptListRequestBody(string ordType, string dutInstCd) {
- this.ordType = ordType;
- 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 GetOrgDeptListResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetOrgDeptListResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListResponseBody Body;
-
- public GetOrgDeptListResponse() {
- }
-
- public GetOrgDeptListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListResponseBody 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 GetOrgDeptListResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetOrgDeptListResult;
-
- public GetOrgDeptListResponseBody() {
- }
-
- public GetOrgDeptListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetOrgDeptListResult) {
- this.GetOrgDeptListResult = GetOrgDeptListResult;
- }
- }
-
- [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 GetWardListRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetWardList", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListRequestBody Body;
-
- public GetWardListRequest() {
- }
-
- public GetWardListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListRequestBody 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 GetWardListRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string dutInstCd;
-
- public GetWardListRequestBody() {
- }
-
- public GetWardListRequestBody(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 GetWardListResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetWardListResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListResponseBody Body;
-
- public GetWardListResponse() {
- }
-
- public GetWardListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListResponseBody 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 GetWardListResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetWardListResult;
-
- public GetWardListResponseBody() {
- }
-
- public GetWardListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetWardListResult) {
- this.GetWardListResult = GetWardListResult;
- }
- }
-
- [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 GetDoctorListRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetDoctorList", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListRequestBody Body;
-
- public GetDoctorListRequest() {
- }
-
- public GetDoctorListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListRequestBody 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 GetDoctorListRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string srchDd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string ordDeptCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string dutInstCd;
-
- public GetDoctorListRequestBody() {
- }
-
- public GetDoctorListRequestBody(string srchDd, string ordDeptCd, string dutInstCd) {
- this.srchDd = srchDd;
- this.ordDeptCd = ordDeptCd;
- 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 GetDoctorListResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetDoctorListResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListResponseBody Body;
-
- public GetDoctorListResponse() {
- }
-
- public GetDoctorListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListResponseBody 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 GetDoctorListResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.DocListVO[] GetDoctorListResult;
-
- public GetDoctorListResponseBody() {
- }
-
- public GetDoctorListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.DocListVO[] GetDoctorListResult) {
- this.GetDoctorListResult = GetDoctorListResult;
- }
- }
-
- [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 GetSupportDeptListRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetSupportDeptList", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListRequestBody Body;
-
- public GetSupportDeptListRequest() {
- }
-
- public GetSupportDeptListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListRequestBody 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 GetSupportDeptListRequestBody {
-
- public GetSupportDeptListRequestBody() {
- }
- }
-
- [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 GetSupportDeptListResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetSupportDeptListResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListResponseBody Body;
-
- public GetSupportDeptListResponse() {
- }
-
- public GetSupportDeptListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListResponseBody 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 GetSupportDeptListResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetSupportDeptListResult;
-
- public GetSupportDeptListResponseBody() {
- }
-
- public GetSupportDeptListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetSupportDeptListResult) {
- this.GetSupportDeptListResult = GetSupportDeptListResult;
- }
- }
-
- [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 GetInspectingRoomNameRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetInspectingRoomName", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameRequestBody Body;
-
- public GetInspectingRoomNameRequest() {
- }
-
- public GetInspectingRoomNameRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameRequestBody 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 GetInspectingRoomNameRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string deptCd;
-
- public GetInspectingRoomNameRequestBody() {
- }
-
- public GetInspectingRoomNameRequestBody(string deptCd) {
- this.deptCd = deptCd;
- }
- }
-
- [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 GetInspectingRoomNameResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetInspectingRoomNameResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameResponseBody Body;
-
- public GetInspectingRoomNameResponse() {
- }
-
- public GetInspectingRoomNameResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameResponseBody 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 GetInspectingRoomNameResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.InspectionVO[] GetInspectingRoomNameResult;
-
- public GetInspectingRoomNameResponseBody() {
- }
-
- public GetInspectingRoomNameResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.InspectionVO[] GetInspectingRoomNameResult) {
- this.GetInspectingRoomNameResult = GetInspectingRoomNameResult;
- }
- }
-
- [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 GetSrchPatInfoRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetSrchPatInfo", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoRequestBody Body;
-
- public GetSrchPatInfoRequest() {
- }
-
- public GetSrchPatInfoRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoRequestBody 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 GetSrchPatInfoRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string srchcond;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string pid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string hngnm;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string rrgstno1;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string rrgstno2;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string dutinstcd;
-
- public GetSrchPatInfoRequestBody() {
- }
-
- public GetSrchPatInfoRequestBody(string srchcond, string pid, string hngnm, string rrgstno1, string rrgstno2, string dutinstcd) {
- this.srchcond = srchcond;
- this.pid = pid;
- this.hngnm = hngnm;
- this.rrgstno1 = rrgstno1;
- this.rrgstno2 = rrgstno2;
- 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 GetSrchPatInfoResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetSrchPatInfoResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoResponseBody Body;
-
- public GetSrchPatInfoResponse() {
- }
-
- public GetSrchPatInfoResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoResponseBody 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 GetSrchPatInfoResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.PatInfoListVO[] GetSrchPatInfoResult;
-
- public GetSrchPatInfoResponseBody() {
- }
-
- public GetSrchPatInfoResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.PatInfoListVO[] GetSrchPatInfoResult) {
- this.GetSrchPatInfoResult = GetSrchPatInfoResult;
- }
- }
-
- [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 GetPatientInfoRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPatientInfo", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoRequestBody Body;
-
- public GetPatientInfoRequest() {
- }
-
- public GetPatientInfoRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoRequestBody 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 GetPatientInfoRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string pid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string ordDd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string ordType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string ordDeptCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string cretNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string dutInstCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string opRsrvNo;
-
- public GetPatientInfoRequestBody() {
- }
-
- public GetPatientInfoRequestBody(string pid, string ordDd, string ordType, string ordDeptCd, string cretNo, string dutInstCd, string opRsrvNo) {
- this.pid = pid;
- this.ordDd = ordDd;
- this.ordType = ordType;
- this.ordDeptCd = ordDeptCd;
- this.cretNo = cretNo;
- this.dutInstCd = dutInstCd;
- 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 GetPatientInfoResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPatientInfoResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoResponseBody Body;
-
- public GetPatientInfoResponse() {
- }
-
- public GetPatientInfoResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoResponseBody 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 GetPatientInfoResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.PatientVO[] GetPatientInfoResult;
-
- public GetPatientInfoResponseBody() {
- }
-
- public GetPatientInfoResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.PatientVO[] GetPatientInfoResult) {
- this.GetPatientInfoResult = GetPatientInfoResult;
- }
- }
-
- [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 SetUserFormSetListRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SetUserFormSetList", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListRequestBody Body;
-
- public SetUserFormSetListRequest() {
- }
-
- public SetUserFormSetListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListRequestBody 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 SetUserFormSetListRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string formCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string dutInstCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string toDay;
-
- public SetUserFormSetListRequestBody() {
- }
-
- public SetUserFormSetListRequestBody(string userId, string formCd, string dutInstCd, string toDay) {
- this.userId = userId;
- this.formCd = formCd;
- this.dutInstCd = dutInstCd;
- this.toDay = toDay;
- }
- }
-
- [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 SetUserFormSetListResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SetUserFormSetListResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListResponseBody Body;
-
- public SetUserFormSetListResponse() {
- }
-
- public SetUserFormSetListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListResponseBody 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 SetUserFormSetListResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData SetUserFormSetListResult;
-
- public SetUserFormSetListResponseBody() {
- }
-
- public SetUserFormSetListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData SetUserFormSetListResult) {
- this.SetUserFormSetListResult = SetUserFormSetListResult;
- }
- }
-
- [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 DelUserFormSetListRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="DelUserFormSetList", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListRequestBody Body;
-
- public DelUserFormSetListRequest() {
- }
-
- public DelUserFormSetListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListRequestBody 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 DelUserFormSetListRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string idx;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string formCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string dutInstCd;
-
- public DelUserFormSetListRequestBody() {
- }
-
- public DelUserFormSetListRequestBody(string idx, string userId, string formCd, string dutInstCd) {
- this.idx = idx;
- this.userId = userId;
- 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 DelUserFormSetListResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="DelUserFormSetListResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListResponseBody Body;
-
- public DelUserFormSetListResponse() {
- }
-
- public DelUserFormSetListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListResponseBody 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 DelUserFormSetListResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData DelUserFormSetListResult;
-
- public DelUserFormSetListResponseBody() {
- }
-
- public DelUserFormSetListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData DelUserFormSetListResult) {
- this.DelUserFormSetListResult = DelUserFormSetListResult;
- }
- }
-
- [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 GetOcrTagRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetOcrTag", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagRequestBody Body;
-
- public GetOcrTagRequest() {
- }
-
- public GetOcrTagRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagRequestBody 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 GetOcrTagRequestBody {
-
- public GetOcrTagRequestBody() {
- }
- }
-
- [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 GetOcrTagResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetOcrTagResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagResponseBody Body;
-
- public GetOcrTagResponse() {
- }
-
- public GetOcrTagResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagResponseBody 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 GetOcrTagResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData GetOcrTagResult;
-
- public GetOcrTagResponseBody() {
- }
-
- public GetOcrTagResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData GetOcrTagResult) {
- this.GetOcrTagResult = GetOcrTagResult;
- }
- }
-
- [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 GetSignImageRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetSignImage", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageRequestBody Body;
-
- public GetSignImageRequest() {
- }
-
- public GetSignImageRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageRequestBody 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 GetSignImageRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string instCd;
-
- public GetSignImageRequestBody() {
- }
-
- public GetSignImageRequestBody(string userId, string instCd) {
- this.userId = userId;
- 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 GetSignImageResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetSignImageResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageResponseBody Body;
-
- public GetSignImageResponse() {
- }
-
- public GetSignImageResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageResponseBody 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 GetSignImageResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.UserSignImageVO GetSignImageResult;
-
- public GetSignImageResponseBody() {
- }
-
- public GetSignImageResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.UserSignImageVO GetSignImageResult) {
- this.GetSignImageResult = GetSignImageResult;
- }
- }
-
- [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 GetDiagNameListRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetDiagNameList", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListRequestBody Body;
-
- public GetDiagNameListRequest() {
- }
-
- public GetDiagNameListRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListRequestBody 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 GetDiagNameListRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string pid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string orddd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string dutinstcd;
-
- public GetDiagNameListRequestBody() {
- }
-
- public GetDiagNameListRequestBody(string pid, string orddd, string dutinstcd) {
- this.pid = pid;
- this.orddd = orddd;
- 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 GetDiagNameListResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetDiagNameListResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListResponseBody Body;
-
- public GetDiagNameListResponse() {
- }
-
- public GetDiagNameListResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListResponseBody 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 GetDiagNameListResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.ArrayOfString GetDiagNameListResult;
-
- public GetDiagNameListResponseBody() {
- }
-
- public GetDiagNameListResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.ArrayOfString GetDiagNameListResult) {
- this.GetDiagNameListResult = GetDiagNameListResult;
- }
- }
-
- [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 GetFileNameRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetFileName", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameRequestBody Body;
-
- public GetFileNameRequest() {
- }
-
- public GetFileNameRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameRequestBody 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 GetFileNameRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string pid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string ordtype;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string orddd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string dschdd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string cretno;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string filesize;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string formcd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string pageno;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
- public string ocrtag;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
- public string userid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
- public string orddeptcd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
- public string dutinstcd;
-
- public GetFileNameRequestBody() {
- }
-
- public GetFileNameRequestBody(string pid, string ordtype, string orddd, string dschdd, string cretno, string filesize, string formcd, string pageno, string ocrtag, string userid, string orddeptcd, string dutinstcd) {
- this.pid = pid;
- this.ordtype = ordtype;
- this.orddd = orddd;
- this.dschdd = dschdd;
- this.cretno = cretno;
- this.filesize = filesize;
- this.formcd = formcd;
- this.pageno = pageno;
- this.ocrtag = ocrtag;
- this.userid = userid;
- this.orddeptcd = orddeptcd;
- 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 GetFileNameResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetFileNameResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameResponseBody Body;
-
- public GetFileNameResponse() {
- }
-
- public GetFileNameResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameResponseBody 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 GetFileNameResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string GetFileNameResult;
-
- public GetFileNameResponseBody() {
- }
-
- public GetFileNameResponseBody(string GetFileNameResult) {
- this.GetFileNameResult = GetFileNameResult;
- }
- }
-
- [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 delEformDataRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="delEformData", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataRequestBody Body;
-
- public delEformDataRequest() {
- }
-
- public delEformDataRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataRequestBody 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 delEformDataRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string pid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string ordtype;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string orddd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string dschdd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string cretno;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string formcd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string ocrtag;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string userid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
- public string username;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
- public string consentmstrid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
- public string hostype;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
- public string orddeptcd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
- public string dutinstcd;
-
- public delEformDataRequestBody() {
- }
-
- public delEformDataRequestBody(string pid, string ordtype, string orddd, string dschdd, string cretno, string formcd, string ocrtag, string userid, string username, string consentmstrid, string hostype, string orddeptcd, string dutinstcd) {
- this.pid = pid;
- this.ordtype = ordtype;
- this.orddd = orddd;
- this.dschdd = dschdd;
- this.cretno = cretno;
- this.formcd = formcd;
- this.ocrtag = ocrtag;
- this.userid = userid;
- this.username = username;
- this.consentmstrid = consentmstrid;
- this.hostype = hostype;
- this.orddeptcd = orddeptcd;
- 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 delEformDataResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="delEformDataResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataResponseBody Body;
-
- public delEformDataResponse() {
- }
-
- public delEformDataResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataResponseBody 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 delEformDataResponseBody {
-
- public delEformDataResponseBody() {
- }
- }
-
- [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 UpdateUserSetupRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="UpdateUserSetup", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupRequestBody Body;
-
- public UpdateUserSetupRequest() {
- }
-
- public UpdateUserSetupRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupRequestBody 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 UpdateUserSetupRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string status;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string instCd;
-
- public UpdateUserSetupRequestBody() {
- }
-
- public UpdateUserSetupRequestBody(string userId, string status, string instCd) {
- this.userId = userId;
- this.status = status;
- 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 UpdateUserSetupResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="UpdateUserSetupResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupResponseBody Body;
-
- public UpdateUserSetupResponse() {
- }
-
- public UpdateUserSetupResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupResponseBody 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 UpdateUserSetupResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData UpdateUserSetupResult;
-
- public UpdateUserSetupResponseBody() {
- }
-
- public UpdateUserSetupResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData UpdateUserSetupResult) {
- this.UpdateUserSetupResult = UpdateUserSetupResult;
- }
- }
-
- [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 doLoginRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="doLogin", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginRequestBody Body;
-
- public doLoginRequest() {
- }
-
- public doLoginRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginRequestBody 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 doLoginRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string sha256EncPw;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string md5EncPw;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string dutInstCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string certSucc;
-
- public doLoginRequestBody() {
- }
-
- public doLoginRequestBody(string userId, string sha256EncPw, string md5EncPw, string dutInstCd, string certSucc) {
- this.userId = userId;
- this.sha256EncPw = sha256EncPw;
- this.md5EncPw = md5EncPw;
- this.dutInstCd = dutInstCd;
- this.certSucc = certSucc;
- }
- }
-
- [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 doLoginResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="doLoginResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginResponseBody Body;
-
- public doLoginResponse() {
- }
-
- public doLoginResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginResponseBody 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 doLoginResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.UserLoginDeptList[] doLoginResult;
-
- public doLoginResponseBody() {
- }
-
- public doLoginResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.UserLoginDeptList[] doLoginResult) {
- this.doLoginResult = doLoginResult;
- }
- }
-
- [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 userLoginOutLogRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="userLoginOutLog", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogRequestBody Body;
-
- public userLoginOutLogRequest() {
- }
-
- public userLoginOutLogRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogRequestBody 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 userLoginOutLogRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string loginStatus;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string deviceType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string macAddress;
-
- public userLoginOutLogRequestBody() {
- }
-
- public userLoginOutLogRequestBody(string userId, string loginStatus, string deviceType, string macAddress) {
- this.userId = userId;
- this.loginStatus = loginStatus;
- this.deviceType = deviceType;
- this.macAddress = macAddress;
- }
- }
-
- [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 userLoginOutLogResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="userLoginOutLogResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogResponseBody Body;
-
- public userLoginOutLogResponse() {
- }
-
- public userLoginOutLogResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogResponseBody 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 userLoginOutLogResponseBody {
-
- public userLoginOutLogResponseBody() {
- }
- }
-
- [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 GetMobileUserInfoRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetMobileUserInfo", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoRequestBody Body;
-
- public GetMobileUserInfoRequest() {
- }
-
- public GetMobileUserInfoRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoRequestBody 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 GetMobileUserInfoRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string userid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string dutplceinstcd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string dutplcecd;
-
- public GetMobileUserInfoRequestBody() {
- }
-
- public GetMobileUserInfoRequestBody(string userid, string dutplceinstcd, string dutplcecd) {
- this.userid = userid;
- this.dutplceinstcd = dutplceinstcd;
- this.dutplcecd = dutplcecd;
- }
- }
-
- [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 GetMobileUserInfoResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetMobileUserInfoResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoResponseBody Body;
-
- public GetMobileUserInfoResponse() {
- }
-
- public GetMobileUserInfoResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoResponseBody 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 GetMobileUserInfoResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.MobileUserInfo GetMobileUserInfoResult;
-
- public GetMobileUserInfoResponseBody() {
- }
-
- public GetMobileUserInfoResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.MobileUserInfo GetMobileUserInfoResult) {
- this.GetMobileUserInfoResult = GetMobileUserInfoResult;
- }
- }
-
- [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 getUserPrefMonitorRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getUserPrefMonitor", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorRequestBody Body;
-
- public getUserPrefMonitorRequest() {
- }
-
- public getUserPrefMonitorRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorRequestBody 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 getUserPrefMonitorRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string instcd;
-
- public getUserPrefMonitorRequestBody() {
- }
-
- public getUserPrefMonitorRequestBody(string userId, string instcd) {
- this.userId = userId;
- 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 getUserPrefMonitorResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getUserPrefMonitorResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorResponseBody Body;
-
- public getUserPrefMonitorResponse() {
- }
-
- public getUserPrefMonitorResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorResponseBody 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 getUserPrefMonitorResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string getUserPrefMonitorResult;
-
- public getUserPrefMonitorResponseBody() {
- }
-
- public getUserPrefMonitorResponseBody(string getUserPrefMonitorResult) {
- this.getUserPrefMonitorResult = getUserPrefMonitorResult;
- }
- }
-
- [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 SetSupportUserDataRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SetSupportUserData", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataRequestBody Body;
-
- public SetSupportUserDataRequest() {
- }
-
- public SetSupportUserDataRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataRequestBody 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 SetSupportUserDataRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string baseCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string supportDeptCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string supportDeptNm;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string macAddress;
-
- public SetSupportUserDataRequestBody() {
- }
-
- public SetSupportUserDataRequestBody(string userId, string baseCd, string supportDeptCd, string supportDeptNm, string macAddress) {
- this.userId = userId;
- this.baseCd = baseCd;
- this.supportDeptCd = supportDeptCd;
- this.supportDeptNm = supportDeptNm;
- this.macAddress = macAddress;
- }
- }
-
- [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 SetSupportUserDataResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SetSupportUserDataResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataResponseBody Body;
-
- public SetSupportUserDataResponse() {
- }
-
- public SetSupportUserDataResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataResponseBody 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 SetSupportUserDataResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData SetSupportUserDataResult;
-
- public SetSupportUserDataResponseBody() {
- }
-
- public SetSupportUserDataResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData SetSupportUserDataResult) {
- this.SetSupportUserDataResult = SetSupportUserDataResult;
- }
- }
-
- [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 SetUserPrefMonitorRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SetUserPrefMonitor", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorRequestBody Body;
-
- public SetUserPrefMonitorRequest() {
- }
-
- public SetUserPrefMonitorRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorRequestBody 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 SetUserPrefMonitorRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string monitorNo;
-
- public SetUserPrefMonitorRequestBody() {
- }
-
- public SetUserPrefMonitorRequestBody(string userId, string monitorNo) {
- this.userId = userId;
- this.monitorNo = monitorNo;
- }
- }
-
- [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 SetUserPrefMonitorResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SetUserPrefMonitorResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorResponseBody Body;
-
- public SetUserPrefMonitorResponse() {
- }
-
- public SetUserPrefMonitorResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorResponseBody 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 SetUserPrefMonitorResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData SetUserPrefMonitorResult;
-
- public SetUserPrefMonitorResponseBody() {
- }
-
- public SetUserPrefMonitorResponseBody(CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData SetUserPrefMonitorResult) {
- this.SetUserPrefMonitorResult = SetUserPrefMonitorResult;
- }
- }
-
- [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 getSessionTimeRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getSessionTime", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeRequestBody Body;
-
- public getSessionTimeRequest() {
- }
-
- public getSessionTimeRequest(CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeRequestBody 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 getSessionTimeRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string instcd;
-
- public getSessionTimeRequestBody() {
- }
-
- public getSessionTimeRequestBody(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 getSessionTimeResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getSessionTimeResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeResponseBody Body;
-
- public getSessionTimeResponse() {
- }
-
- public getSessionTimeResponse(CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeResponseBody 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 getSessionTimeResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string getSessionTimeResult;
-
- public getSessionTimeResponseBody() {
- }
-
- public getSessionTimeResponseBody(string getSessionTimeResult) {
- this.getSessionTimeResult = getSessionTimeResult;
- }
- }
-
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- public interface HospitalSvcSoapChannel : CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap, System.ServiceModel.IClientChannel {
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- public partial class HospitalSvcSoapClient : System.ServiceModel.ClientBase<CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap>, CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap {
-
- public HospitalSvcSoapClient() {
- }
-
- public HospitalSvcSoapClient(string endpointConfigurationName) :
- base(endpointConfigurationName) {
- }
-
- public HospitalSvcSoapClient(string endpointConfigurationName, string remoteAddress) :
- base(endpointConfigurationName, remoteAddress) {
- }
-
- public HospitalSvcSoapClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
- base(endpointConfigurationName, remoteAddress) {
- }
-
- public HospitalSvcSoapClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
- base(binding, remoteAddress) {
- }
-
- public bool CheckWebService() {
- return base.Channel.CheckWebService();
- }
-
- public bool CheckDatabaseConnection() {
- return base.Channel.CheckDatabaseConnection();
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetSettingData(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataRequest request) {
- return base.Channel.GetSettingData(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.SettingListVO[] GetSettingData() {
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataRequestBody();
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetSettingDataResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetSettingData(inValue);
- return retVal.Body.GetSettingDataResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetUserInfo(CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoRequest request) {
- return base.Channel.GetUserInfo(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.UserVO GetUserInfo(string userid, string dutinstcd, string dutplcecd) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoRequestBody();
- inValue.Body.userid = userid;
- inValue.Body.dutinstcd = dutinstcd;
- inValue.Body.dutplcecd = dutplcecd;
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetUserInfoResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetUserInfo(inValue);
- return retVal.Body.GetUserInfoResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetTrmtDateList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListRequest request) {
- return base.Channel.GetTrmtDateList(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.ClnDateForDropdownVO[] GetTrmtDateList(string patientNo, string searchClnDate, string searchType, string orddeptcd, string dutinstcd, string ordType) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListRequestBody();
- inValue.Body.patientNo = patientNo;
- inValue.Body.searchClnDate = searchClnDate;
- inValue.Body.searchType = searchType;
- inValue.Body.orddeptcd = orddeptcd;
- inValue.Body.dutinstcd = dutinstcd;
- inValue.Body.ordType = ordType;
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetTrmtDateListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetTrmtDateList(inValue);
- return retVal.Body.GetTrmtDateListResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetPatientList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListRequest request) {
- return base.Channel.GetPatientList(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientList(string selectFlag, string srchYN, string srchDd, string ordDeptCd, string doctorId, string pid, string wardCd, string patientState, string dutInstCd, string userId, string myPatient, string drKind) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListRequestBody();
- inValue.Body.selectFlag = selectFlag;
- inValue.Body.srchYN = srchYN;
- inValue.Body.srchDd = srchDd;
- inValue.Body.ordDeptCd = ordDeptCd;
- inValue.Body.doctorId = doctorId;
- inValue.Body.pid = pid;
- inValue.Body.wardCd = wardCd;
- inValue.Body.patientState = patientState;
- inValue.Body.dutInstCd = dutInstCd;
- inValue.Body.userId = userId;
- inValue.Body.myPatient = myPatient;
- inValue.Body.drKind = drKind;
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetPatientList(inValue);
- return retVal.Body.GetPatientListResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetPatientExList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListRequest request) {
- return base.Channel.GetPatientExList(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientExList(string selectFlag, string toDt, string fromDt, string baseCd, string supportDeptCd, string pid, string patientState) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListRequestBody();
- inValue.Body.selectFlag = selectFlag;
- inValue.Body.toDt = toDt;
- inValue.Body.fromDt = fromDt;
- inValue.Body.baseCd = baseCd;
- inValue.Body.supportDeptCd = supportDeptCd;
- inValue.Body.pid = pid;
- inValue.Body.patientState = patientState;
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetPatientExList(inValue);
- return retVal.Body.GetPatientExListResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetPatientExListPC(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCRequest request) {
- return base.Channel.GetPatientExListPC(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientExListPC(string selectFlag, string toDt, string fromDt, string baseCd, string supportDeptCd, string pid, string patientState, string isMainD, string mainDrId) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCRequestBody();
- inValue.Body.selectFlag = selectFlag;
- inValue.Body.toDt = toDt;
- inValue.Body.fromDt = fromDt;
- inValue.Body.baseCd = baseCd;
- inValue.Body.supportDeptCd = supportDeptCd;
- inValue.Body.pid = pid;
- inValue.Body.patientState = patientState;
- inValue.Body.isMainD = isMainD;
- inValue.Body.mainDrId = mainDrId;
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExListPCResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetPatientExListPC(inValue);
- return retVal.Body.GetPatientExListPCResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetPatientExPCList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListRequest request) {
- return base.Channel.GetPatientExPCList(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.PatListVO[] GetPatientExPCList(string selectFlag, string toDt, string fromDt, string baseCd, string supportDeptCd, string pid, string patientState, string isMainD, string mainDrId) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListRequestBody();
- inValue.Body.selectFlag = selectFlag;
- inValue.Body.toDt = toDt;
- inValue.Body.fromDt = fromDt;
- inValue.Body.baseCd = baseCd;
- inValue.Body.supportDeptCd = supportDeptCd;
- inValue.Body.pid = pid;
- inValue.Body.patientState = patientState;
- inValue.Body.isMainD = isMainD;
- inValue.Body.mainDrId = mainDrId;
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientExPCListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetPatientExPCList(inValue);
- return retVal.Body.GetPatientExPCListResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetDeptList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListRequest request) {
- return base.Channel.GetDeptList(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetDeptList(string ordType, string dutInstCd) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListRequestBody();
- inValue.Body.ordType = ordType;
- inValue.Body.dutInstCd = dutInstCd;
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetDeptListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetDeptList(inValue);
- return retVal.Body.GetDeptListResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetOrgDeptList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListRequest request) {
- return base.Channel.GetOrgDeptList(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetOrgDeptList(string ordType, string dutInstCd) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListRequestBody();
- inValue.Body.ordType = ordType;
- inValue.Body.dutInstCd = dutInstCd;
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetOrgDeptListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetOrgDeptList(inValue);
- return retVal.Body.GetOrgDeptListResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetWardList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListRequest request) {
- return base.Channel.GetWardList(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetWardList(string dutInstCd) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListRequestBody();
- inValue.Body.dutInstCd = dutInstCd;
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetWardListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetWardList(inValue);
- return retVal.Body.GetWardListResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetDoctorList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListRequest request) {
- return base.Channel.GetDoctorList(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.DocListVO[] GetDoctorList(string srchDd, string ordDeptCd, string dutInstCd) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListRequestBody();
- inValue.Body.srchDd = srchDd;
- inValue.Body.ordDeptCd = ordDeptCd;
- inValue.Body.dutInstCd = dutInstCd;
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetDoctorListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetDoctorList(inValue);
- return retVal.Body.GetDoctorListResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetSupportDeptList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListRequest request) {
- return base.Channel.GetSupportDeptList(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.DeptListVO[] GetSupportDeptList() {
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListRequestBody();
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetSupportDeptListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetSupportDeptList(inValue);
- return retVal.Body.GetSupportDeptListResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetInspectingRoomName(CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameRequest request) {
- return base.Channel.GetInspectingRoomName(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.InspectionVO[] GetInspectingRoomName(string deptCd) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameRequestBody();
- inValue.Body.deptCd = deptCd;
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetInspectingRoomNameResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetInspectingRoomName(inValue);
- return retVal.Body.GetInspectingRoomNameResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetSrchPatInfo(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoRequest request) {
- return base.Channel.GetSrchPatInfo(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.PatInfoListVO[] GetSrchPatInfo(string srchcond, string pid, string hngnm, string rrgstno1, string rrgstno2, string dutinstcd) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoRequestBody();
- inValue.Body.srchcond = srchcond;
- inValue.Body.pid = pid;
- inValue.Body.hngnm = hngnm;
- inValue.Body.rrgstno1 = rrgstno1;
- inValue.Body.rrgstno2 = rrgstno2;
- inValue.Body.dutinstcd = dutinstcd;
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetSrchPatInfoResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetSrchPatInfo(inValue);
- return retVal.Body.GetSrchPatInfoResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetPatientInfo(CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoRequest request) {
- return base.Channel.GetPatientInfo(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.PatientVO[] GetPatientInfo(string pid, string ordDd, string ordType, string ordDeptCd, string cretNo, string dutInstCd, string opRsrvNo) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoRequestBody();
- inValue.Body.pid = pid;
- inValue.Body.ordDd = ordDd;
- inValue.Body.ordType = ordType;
- inValue.Body.ordDeptCd = ordDeptCd;
- inValue.Body.cretNo = cretNo;
- inValue.Body.dutInstCd = dutInstCd;
- inValue.Body.opRsrvNo = opRsrvNo;
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetPatientInfoResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetPatientInfo(inValue);
- return retVal.Body.GetPatientInfoResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.SetUserFormSetList(CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListRequest request) {
- return base.Channel.SetUserFormSetList(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData SetUserFormSetList(string userId, string formCd, string dutInstCd, string toDay) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListRequestBody();
- inValue.Body.userId = userId;
- inValue.Body.formCd = formCd;
- inValue.Body.dutInstCd = dutInstCd;
- inValue.Body.toDay = toDay;
- CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserFormSetListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).SetUserFormSetList(inValue);
- return retVal.Body.SetUserFormSetListResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.DelUserFormSetList(CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListRequest request) {
- return base.Channel.DelUserFormSetList(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData DelUserFormSetList(string idx, string userId, string formCd, string dutInstCd) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListRequestBody();
- inValue.Body.idx = idx;
- inValue.Body.userId = userId;
- inValue.Body.formCd = formCd;
- inValue.Body.dutInstCd = dutInstCd;
- CLIP.eForm.Consent.UI.HospitalSvcRef.DelUserFormSetListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).DelUserFormSetList(inValue);
- return retVal.Body.DelUserFormSetListResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetOcrTag(CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagRequest request) {
- return base.Channel.GetOcrTag(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData GetOcrTag() {
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagRequestBody();
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetOcrTagResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetOcrTag(inValue);
- return retVal.Body.GetOcrTagResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetSignImage(CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageRequest request) {
- return base.Channel.GetSignImage(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.UserSignImageVO GetSignImage(string userId, string instCd) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageRequestBody();
- inValue.Body.userId = userId;
- inValue.Body.instCd = instCd;
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetSignImageResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetSignImage(inValue);
- return retVal.Body.GetSignImageResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetDiagNameList(CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListRequest request) {
- return base.Channel.GetDiagNameList(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.ArrayOfString GetDiagNameList(string pid, string orddd, string dutinstcd) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListRequestBody();
- inValue.Body.pid = pid;
- inValue.Body.orddd = orddd;
- inValue.Body.dutinstcd = dutinstcd;
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetDiagNameListResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetDiagNameList(inValue);
- return retVal.Body.GetDiagNameListResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetFileName(CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameRequest request) {
- return base.Channel.GetFileName(request);
- }
-
- public string GetFileName(string pid, string ordtype, string orddd, string dschdd, string cretno, string filesize, string formcd, string pageno, string ocrtag, string userid, string orddeptcd, string dutinstcd) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameRequestBody();
- inValue.Body.pid = pid;
- inValue.Body.ordtype = ordtype;
- inValue.Body.orddd = orddd;
- inValue.Body.dschdd = dschdd;
- inValue.Body.cretno = cretno;
- inValue.Body.filesize = filesize;
- inValue.Body.formcd = formcd;
- inValue.Body.pageno = pageno;
- inValue.Body.ocrtag = ocrtag;
- inValue.Body.userid = userid;
- inValue.Body.orddeptcd = orddeptcd;
- inValue.Body.dutinstcd = dutinstcd;
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetFileNameResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetFileName(inValue);
- return retVal.Body.GetFileNameResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.delEformData(CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataRequest request) {
- return base.Channel.delEformData(request);
- }
-
- public void delEformData(string pid, string ordtype, string orddd, string dschdd, string cretno, string formcd, string ocrtag, string userid, string username, string consentmstrid, string hostype, string orddeptcd, string dutinstcd) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataRequestBody();
- inValue.Body.pid = pid;
- inValue.Body.ordtype = ordtype;
- inValue.Body.orddd = orddd;
- inValue.Body.dschdd = dschdd;
- inValue.Body.cretno = cretno;
- inValue.Body.formcd = formcd;
- inValue.Body.ocrtag = ocrtag;
- inValue.Body.userid = userid;
- inValue.Body.username = username;
- inValue.Body.consentmstrid = consentmstrid;
- inValue.Body.hostype = hostype;
- inValue.Body.orddeptcd = orddeptcd;
- inValue.Body.dutinstcd = dutinstcd;
- CLIP.eForm.Consent.UI.HospitalSvcRef.delEformDataResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).delEformData(inValue);
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.UpdateUserSetup(CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupRequest request) {
- return base.Channel.UpdateUserSetup(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData UpdateUserSetup(string userId, string status, string instCd) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupRequestBody();
- inValue.Body.userId = userId;
- inValue.Body.status = status;
- inValue.Body.instCd = instCd;
- CLIP.eForm.Consent.UI.HospitalSvcRef.UpdateUserSetupResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).UpdateUserSetup(inValue);
- return retVal.Body.UpdateUserSetupResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.doLogin(CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginRequest request) {
- return base.Channel.doLogin(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.UserLoginDeptList[] doLogin(string userId, string sha256EncPw, string md5EncPw, string dutInstCd, string certSucc) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginRequestBody();
- inValue.Body.userId = userId;
- inValue.Body.sha256EncPw = sha256EncPw;
- inValue.Body.md5EncPw = md5EncPw;
- inValue.Body.dutInstCd = dutInstCd;
- inValue.Body.certSucc = certSucc;
- CLIP.eForm.Consent.UI.HospitalSvcRef.doLoginResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).doLogin(inValue);
- return retVal.Body.doLoginResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.userLoginOutLog(CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogRequest request) {
- return base.Channel.userLoginOutLog(request);
- }
-
- public void userLoginOutLog(string userId, string loginStatus, string deviceType, string macAddress) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogRequestBody();
- inValue.Body.userId = userId;
- inValue.Body.loginStatus = loginStatus;
- inValue.Body.deviceType = deviceType;
- inValue.Body.macAddress = macAddress;
- CLIP.eForm.Consent.UI.HospitalSvcRef.userLoginOutLogResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).userLoginOutLog(inValue);
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.GetMobileUserInfo(CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoRequest request) {
- return base.Channel.GetMobileUserInfo(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.MobileUserInfo GetMobileUserInfo(string userid, string dutplceinstcd, string dutplcecd) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoRequestBody();
- inValue.Body.userid = userid;
- inValue.Body.dutplceinstcd = dutplceinstcd;
- inValue.Body.dutplcecd = dutplcecd;
- CLIP.eForm.Consent.UI.HospitalSvcRef.GetMobileUserInfoResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).GetMobileUserInfo(inValue);
- return retVal.Body.GetMobileUserInfoResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.getUserPrefMonitor(CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorRequest request) {
- return base.Channel.getUserPrefMonitor(request);
- }
-
- public string getUserPrefMonitor(string userId, string instcd) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorRequestBody();
- inValue.Body.userId = userId;
- inValue.Body.instcd = instcd;
- CLIP.eForm.Consent.UI.HospitalSvcRef.getUserPrefMonitorResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).getUserPrefMonitor(inValue);
- return retVal.Body.getUserPrefMonitorResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.SetSupportUserData(CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataRequest request) {
- return base.Channel.SetSupportUserData(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData SetSupportUserData(string userId, string baseCd, string supportDeptCd, string supportDeptNm, string macAddress) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataRequestBody();
- inValue.Body.userId = userId;
- inValue.Body.baseCd = baseCd;
- inValue.Body.supportDeptCd = supportDeptCd;
- inValue.Body.supportDeptNm = supportDeptNm;
- inValue.Body.macAddress = macAddress;
- CLIP.eForm.Consent.UI.HospitalSvcRef.SetSupportUserDataResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).SetSupportUserData(inValue);
- return retVal.Body.SetSupportUserDataResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.SetUserPrefMonitor(CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorRequest request) {
- return base.Channel.SetUserPrefMonitor(request);
- }
-
- public CLIP.eForm.Consent.UI.HospitalSvcRef.SingleReturnData SetUserPrefMonitor(string userId, string monitorNo) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorRequestBody();
- inValue.Body.userId = userId;
- inValue.Body.monitorNo = monitorNo;
- CLIP.eForm.Consent.UI.HospitalSvcRef.SetUserPrefMonitorResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).SetUserPrefMonitor(inValue);
- return retVal.Body.SetUserPrefMonitorResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeResponse CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap.getSessionTime(CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeRequest request) {
- return base.Channel.getSessionTime(request);
- }
-
- public string getSessionTime(string instcd) {
- CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeRequest inValue = new CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeRequestBody();
- inValue.Body.instcd = instcd;
- CLIP.eForm.Consent.UI.HospitalSvcRef.getSessionTimeResponse retVal = ((CLIP.eForm.Consent.UI.HospitalSvcRef.HospitalSvcSoap)(this)).getSessionTime(inValue);
- return retVal.Body.getSessionTimeResult;
- }
- }
- }
|