123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // 이 코드는 도구를 사용하여 생성되었습니다.
- // 런타임 버전:4.0.30319.42000
- //
- // 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면
- // 이러한 변경 내용이 손실됩니다.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace CLIP.eForm.Consent.UI.ConsentSvcRef {
- using System.Runtime.Serialization;
- using System;
-
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
- [System.Runtime.Serialization.CollectionDataContractAttribute(Name="ArrayOfString", Namespace="http://tempuri.org/", ItemName="string")]
- [System.SerializableAttribute()]
- public class ArrayOfString : System.Collections.Generic.List<string> {
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
- [System.Runtime.Serialization.DataContractAttribute(Name="CategoryForDropdownVO", Namespace="http://tempuri.org/")]
- [System.SerializableAttribute()]
- public partial class CategoryForDropdownVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
-
- [System.NonSerializedAttribute()]
- private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
-
- private int categoryIdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string categoryCodeField;
-
- private int parentCategoryIdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string categoryNameField;
-
- [global::System.ComponentModel.BrowsableAttribute(false)]
- public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
- get {
- return this.extensionDataField;
- }
- set {
- this.extensionDataField = value;
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
- public int categoryId {
- get {
- return this.categoryIdField;
- }
- set {
- if ((this.categoryIdField.Equals(value) != true)) {
- this.categoryIdField = value;
- this.RaisePropertyChanged("categoryId");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string categoryCode {
- get {
- return this.categoryCodeField;
- }
- set {
- if ((object.ReferenceEquals(this.categoryCodeField, value) != true)) {
- this.categoryCodeField = value;
- this.RaisePropertyChanged("categoryCode");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=2)]
- public int parentCategoryId {
- get {
- return this.parentCategoryIdField;
- }
- set {
- if ((this.parentCategoryIdField.Equals(value) != true)) {
- this.parentCategoryIdField = value;
- this.RaisePropertyChanged("parentCategoryId");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string categoryName {
- get {
- return this.categoryNameField;
- }
- set {
- if ((object.ReferenceEquals(this.categoryNameField, value) != true)) {
- this.categoryNameField = value;
- this.RaisePropertyChanged("categoryName");
- }
- }
- }
-
- public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
-
- protected void RaisePropertyChanged(string propertyName) {
- System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
- if ((propertyChanged != null)) {
- propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
- }
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
- [System.Runtime.Serialization.DataContractAttribute(Name="ConsentVO", Namespace="http://tempuri.org/")]
- [System.SerializableAttribute()]
- public partial class ConsentVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
-
- [System.NonSerializedAttribute()]
- private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
-
- private int idxField;
-
- private int formIdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string formCodeField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string formNameField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string formPrntNmField;
-
- private int printCntField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string certPassField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string pidField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string deptEngNameField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string consentStateField;
-
- private int consentMstRidField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string ocrTagField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string patientNameField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string modifyUserIdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string modifyUserNmField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string modifyDatetimeField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string createDatetimeField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string clnDateField;
-
- private int cretNoField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string ordTypeField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string deptCdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string mainDrIdField;
-
- [global::System.ComponentModel.BrowsableAttribute(false)]
- public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
- get {
- return this.extensionDataField;
- }
- set {
- this.extensionDataField = value;
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
- public int idx {
- get {
- return this.idxField;
- }
- set {
- if ((this.idxField.Equals(value) != true)) {
- this.idxField = value;
- this.RaisePropertyChanged("idx");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=1)]
- public int formId {
- get {
- return this.formIdField;
- }
- set {
- if ((this.formIdField.Equals(value) != true)) {
- this.formIdField = value;
- this.RaisePropertyChanged("formId");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string formCode {
- get {
- return this.formCodeField;
- }
- set {
- if ((object.ReferenceEquals(this.formCodeField, value) != true)) {
- this.formCodeField = value;
- this.RaisePropertyChanged("formCode");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string formName {
- get {
- return this.formNameField;
- }
- set {
- if ((object.ReferenceEquals(this.formNameField, value) != true)) {
- this.formNameField = value;
- this.RaisePropertyChanged("formName");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string formPrntNm {
- get {
- return this.formPrntNmField;
- }
- set {
- if ((object.ReferenceEquals(this.formPrntNmField, value) != true)) {
- this.formPrntNmField = value;
- this.RaisePropertyChanged("formPrntNm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=5)]
- public int printCnt {
- get {
- return this.printCntField;
- }
- set {
- if ((this.printCntField.Equals(value) != true)) {
- this.printCntField = value;
- this.RaisePropertyChanged("printCnt");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string certPass {
- get {
- return this.certPassField;
- }
- set {
- if ((object.ReferenceEquals(this.certPassField, value) != true)) {
- this.certPassField = value;
- this.RaisePropertyChanged("certPass");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- 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=8)]
- public string deptEngName {
- get {
- return this.deptEngNameField;
- }
- set {
- if ((object.ReferenceEquals(this.deptEngNameField, value) != true)) {
- this.deptEngNameField = value;
- this.RaisePropertyChanged("deptEngName");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
- public string consentState {
- get {
- return this.consentStateField;
- }
- set {
- if ((object.ReferenceEquals(this.consentStateField, value) != true)) {
- this.consentStateField = value;
- this.RaisePropertyChanged("consentState");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=10)]
- public int consentMstRid {
- get {
- return this.consentMstRidField;
- }
- set {
- if ((this.consentMstRidField.Equals(value) != true)) {
- this.consentMstRidField = value;
- this.RaisePropertyChanged("consentMstRid");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
- public string ocrTag {
- get {
- return this.ocrTagField;
- }
- set {
- if ((object.ReferenceEquals(this.ocrTagField, value) != true)) {
- this.ocrTagField = value;
- this.RaisePropertyChanged("ocrTag");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
- 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=13)]
- public string modifyUserId {
- get {
- return this.modifyUserIdField;
- }
- set {
- if ((object.ReferenceEquals(this.modifyUserIdField, value) != true)) {
- this.modifyUserIdField = value;
- this.RaisePropertyChanged("modifyUserId");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
- public string modifyUserNm {
- get {
- return this.modifyUserNmField;
- }
- set {
- if ((object.ReferenceEquals(this.modifyUserNmField, value) != true)) {
- this.modifyUserNmField = value;
- this.RaisePropertyChanged("modifyUserNm");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
- public string modifyDatetime {
- get {
- return this.modifyDatetimeField;
- }
- set {
- if ((object.ReferenceEquals(this.modifyDatetimeField, value) != true)) {
- this.modifyDatetimeField = value;
- this.RaisePropertyChanged("modifyDatetime");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=16)]
- public string createDatetime {
- get {
- return this.createDatetimeField;
- }
- set {
- if ((object.ReferenceEquals(this.createDatetimeField, value) != true)) {
- this.createDatetimeField = value;
- this.RaisePropertyChanged("createDatetime");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=17)]
- 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(IsRequired=true, Order=18)]
- 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=19)]
- 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=20)]
- 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, Order=21)]
- public string mainDrId {
- get {
- return this.mainDrIdField;
- }
- set {
- if ((object.ReferenceEquals(this.mainDrIdField, value) != true)) {
- this.mainDrIdField = value;
- this.RaisePropertyChanged("mainDrId");
- }
- }
- }
-
- 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="ConsentImageVO", Namespace="http://tempuri.org/")]
- [System.SerializableAttribute()]
- public partial class ConsentImageVO : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
-
- [System.NonSerializedAttribute()]
- private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
-
- private int consentMstRidField;
-
- private int consentImageRidField;
-
- private int formRidField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string imagePathField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string imageFilenameField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string completeYnField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string createUserIdField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string createDatetimeField;
-
- [global::System.ComponentModel.BrowsableAttribute(false)]
- public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
- get {
- return this.extensionDataField;
- }
- set {
- this.extensionDataField = value;
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
- public int consentMstRid {
- get {
- return this.consentMstRidField;
- }
- set {
- if ((this.consentMstRidField.Equals(value) != true)) {
- this.consentMstRidField = value;
- this.RaisePropertyChanged("consentMstRid");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=1)]
- public int consentImageRid {
- get {
- return this.consentImageRidField;
- }
- set {
- if ((this.consentImageRidField.Equals(value) != true)) {
- this.consentImageRidField = value;
- this.RaisePropertyChanged("consentImageRid");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, Order=2)]
- public int formRid {
- get {
- return this.formRidField;
- }
- set {
- if ((this.formRidField.Equals(value) != true)) {
- this.formRidField = value;
- this.RaisePropertyChanged("formRid");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string imagePath {
- get {
- return this.imagePathField;
- }
- set {
- if ((object.ReferenceEquals(this.imagePathField, value) != true)) {
- this.imagePathField = value;
- this.RaisePropertyChanged("imagePath");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string imageFilename {
- get {
- return this.imageFilenameField;
- }
- set {
- if ((object.ReferenceEquals(this.imageFilenameField, value) != true)) {
- this.imageFilenameField = value;
- this.RaisePropertyChanged("imageFilename");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string completeYn {
- get {
- return this.completeYnField;
- }
- set {
- if ((object.ReferenceEquals(this.completeYnField, value) != true)) {
- this.completeYnField = value;
- this.RaisePropertyChanged("completeYn");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string createUserId {
- get {
- return this.createUserIdField;
- }
- set {
- if ((object.ReferenceEquals(this.createUserIdField, value) != true)) {
- this.createUserIdField = value;
- this.RaisePropertyChanged("createUserId");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string createDatetime {
- get {
- return this.createDatetimeField;
- }
- set {
- if ((object.ReferenceEquals(this.createDatetimeField, value) != true)) {
- this.createDatetimeField = value;
- this.RaisePropertyChanged("createDatetime");
- }
- }
- }
-
- public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
-
- protected void RaisePropertyChanged(string propertyName) {
- System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
- if ((propertyChanged != null)) {
- propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
- }
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
- [System.Runtime.Serialization.DataContractAttribute(Name="ImrData", Namespace="http://tempuri.org/")]
- [System.SerializableAttribute()]
- public partial class ImrData : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
-
- [System.NonSerializedAttribute()]
- private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string fileNameField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string inputDateField;
-
- [System.Runtime.Serialization.OptionalFieldAttribute()]
- private string userIdField;
-
- [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 fileName {
- get {
- return this.fileNameField;
- }
- set {
- if ((object.ReferenceEquals(this.fileNameField, value) != true)) {
- this.fileNameField = value;
- this.RaisePropertyChanged("fileName");
- }
- }
- }
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false)]
- public string inputDate {
- get {
- return this.inputDateField;
- }
- set {
- if ((object.ReferenceEquals(this.inputDateField, value) != true)) {
- this.inputDateField = value;
- this.RaisePropertyChanged("inputDate");
- }
- }
- }
-
- [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");
- }
- }
- }
-
- public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
-
- protected void RaisePropertyChanged(string propertyName) {
- System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
- if ((propertyChanged != null)) {
- propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
- }
- }
- }
-
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ServiceModel.ServiceContractAttribute(ConfigurationName="ConsentSvcRef.ConsentSvcSoap")]
- public interface ConsentSvcSoap {
-
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/CheckWebService", ReplyAction="*")]
- bool CheckWebService();
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 dutinstcd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getOcrType6Forms", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsResponse getOcrType6Forms(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsRequest request);
-
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/CheckDatabaseConnection", ReplyAction="*")]
- bool CheckDatabaseConnection();
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 GetCategoryForDropdownResult이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetCategoryForDropdown", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownResponse GetCategoryForDropdown(CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 pid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentList", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListResponse GetConsentList(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 srchDd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentDateList", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListResponse GetConsentDateList(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 pid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetPrescriptionConsentList", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListResponse GetPrescriptionConsentList(CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 categoryId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentBySearch", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchResponse GetConsentBySearch(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentSetList", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListResponse GetConsentSetList(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 formCd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentByFormcd", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdResponse GetConsentByFormcd(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 pid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ReUseCertifyConsentFlag", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagResponse ReUseCertifyConsentFlag(CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 instcd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getSaveAllFlag", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagResponse getSaveAllFlag(CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 consentMstRid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentImage", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageResponse GetConsentImage(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 consentMstRid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentAudioCount", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountResponse GetConsentAudioCount(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 consentMstRid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentAudio", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioResponse GetConsentAudio(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/saveDelete", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteResponse saveDelete(CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SaveTempData", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataResponse SaveTempData(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SaveAutoCompleteAll", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllResponse SaveAutoCompleteAll(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 imrTestResult이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/imrTest", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestResponse imrTest(CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SaveCompleteAll", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllResponse SaveCompleteAll(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 GetConsentFormXmlResult이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/GetConsentFormXml", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlResponse GetConsentFormXml(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 userId이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SavePrintOut", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutResponse SavePrintOut(CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 patientCode이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SaveMedicalHistory", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryResponse SaveMedicalHistory(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 consentState이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SaveImageUploadInfo", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoResponse SaveImageUploadInfo(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 consentState이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/SaveImageSignInfo", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoResponse SaveImageSignInfo(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 consent_state이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/CheckConsentState", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateResponse CheckConsentState(CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 formCd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getOcrString", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringResponse getOcrString(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 formCd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getCertUseYn", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnResponse getCertUseYn(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 formCd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getCertUseYnData", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataResponse getCertUseYnData(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 dutinstcd이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getDualViewMode", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeResponse getDualViewMode(CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 consent_rids이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/updateCertifyComplete", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteResponse updateCertifyComplete(CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 pid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/updatePrintHistory", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryResponse updatePrintHistory(CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 pid이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/duplicateCertConsent", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentResponse duplicateCertConsent(CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentRequest request);
-
- // CODEGEN: http://tempuri.org/ 네임스페이스의 요소 이름 getUserTableGrantsResult이(가) "nillable"로 표시되지 않았으므로 메시지 계약을 생성합니다.
- [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getUserTableGrants", ReplyAction="*")]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsResponse getUserTableGrants(CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsRequest request);
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getOcrType6FormsRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getOcrType6Forms", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsRequestBody Body;
-
- public getOcrType6FormsRequest() {
- }
-
- public getOcrType6FormsRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getOcrType6FormsRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string dutinstcd;
-
- public getOcrType6FormsRequestBody() {
- }
-
- public getOcrType6FormsRequestBody(string dutinstcd) {
- this.dutinstcd = dutinstcd;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getOcrType6FormsResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getOcrType6FormsResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsResponseBody Body;
-
- public getOcrType6FormsResponse() {
- }
-
- public getOcrType6FormsResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getOcrType6FormsResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ArrayOfString getOcrType6FormsResult;
-
- public getOcrType6FormsResponseBody() {
- }
-
- public getOcrType6FormsResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ArrayOfString getOcrType6FormsResult) {
- this.getOcrType6FormsResult = getOcrType6FormsResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetCategoryForDropdownRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetCategoryForDropdown", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownRequestBody Body;
-
- public GetCategoryForDropdownRequest() {
- }
-
- public GetCategoryForDropdownRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute()]
- public partial class GetCategoryForDropdownRequestBody {
-
- public GetCategoryForDropdownRequestBody() {
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetCategoryForDropdownResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetCategoryForDropdownResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownResponseBody Body;
-
- public GetCategoryForDropdownResponse() {
- }
-
- public GetCategoryForDropdownResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetCategoryForDropdownResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.CategoryForDropdownVO[] GetCategoryForDropdownResult;
-
- public GetCategoryForDropdownResponseBody() {
- }
-
- public GetCategoryForDropdownResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.CategoryForDropdownVO[] GetCategoryForDropdownResult) {
- this.GetCategoryForDropdownResult = GetCategoryForDropdownResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentListRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentList", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListRequestBody Body;
-
- public GetConsentListRequest() {
- }
-
- public GetConsentListRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetConsentListRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string pid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string startDt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string endDt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string consentState;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string instCd;
-
- public GetConsentListRequestBody() {
- }
-
- public GetConsentListRequestBody(string pid, string userId, string startDt, string endDt, string consentState, string instCd) {
- this.pid = pid;
- this.userId = userId;
- this.startDt = startDt;
- this.endDt = endDt;
- this.consentState = consentState;
- 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 GetConsentListResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentListResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListResponseBody Body;
-
- public GetConsentListResponse() {
- }
-
- public GetConsentListResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetConsentListResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentListResult;
-
- public GetConsentListResponseBody() {
- }
-
- public GetConsentListResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentListResult) {
- this.GetConsentListResult = GetConsentListResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentDateListRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentDateList", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListRequestBody Body;
-
- public GetConsentDateListRequest() {
- }
-
- public GetConsentDateListRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListRequestBody 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 GetConsentDateListRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string srchDd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string pid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string startDt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string endDt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string consentState;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string instCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string doctorId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
- public string ordDeptCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
- public string patientState;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
- public string ordType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
- public string myPatient;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
- public string wardCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
- public string drKind;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
- public string srchYN;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
- public string toDd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=16)]
- public string mainDr;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=17)]
- public string mainDrChecked;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=18)]
- public string supportBaseCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=19)]
- public string supportDeptCd;
-
- public GetConsentDateListRequestBody() {
- }
-
- public GetConsentDateListRequestBody(
- string srchDd,
- string pid,
- string userId,
- string startDt,
- string endDt,
- string consentState,
- string instCd,
- string doctorId,
- string ordDeptCd,
- string patientState,
- string ordType,
- string myPatient,
- string wardCd,
- string drKind,
- string srchYN,
- string toDd,
- string mainDr,
- string mainDrChecked,
- string supportBaseCd,
- string supportDeptCd) {
- this.srchDd = srchDd;
- this.pid = pid;
- this.userId = userId;
- this.startDt = startDt;
- this.endDt = endDt;
- this.consentState = consentState;
- this.instCd = instCd;
- this.doctorId = doctorId;
- this.ordDeptCd = ordDeptCd;
- this.patientState = patientState;
- this.ordType = ordType;
- this.myPatient = myPatient;
- this.wardCd = wardCd;
- this.drKind = drKind;
- this.srchYN = srchYN;
- this.toDd = toDd;
- this.mainDr = mainDr;
- this.mainDrChecked = mainDrChecked;
- this.supportBaseCd = supportBaseCd;
- this.supportDeptCd = supportDeptCd;
- }
- }
-
- [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 GetConsentDateListResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentDateListResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListResponseBody Body;
-
- public GetConsentDateListResponse() {
- }
-
- public GetConsentDateListResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListResponseBody 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 GetConsentDateListResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentDateListResult;
-
- public GetConsentDateListResponseBody() {
- }
-
- public GetConsentDateListResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentDateListResult) {
- this.GetConsentDateListResult = GetConsentDateListResult;
- }
- }
-
- [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 GetPrescriptionConsentListRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPrescriptionConsentList", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListRequestBody Body;
-
- public GetPrescriptionConsentListRequest() {
- }
-
- public GetPrescriptionConsentListRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListRequestBody 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 GetPrescriptionConsentListRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string pid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string ordDd;
-
- public GetPrescriptionConsentListRequestBody() {
- }
-
- public GetPrescriptionConsentListRequestBody(string pid, string ordDd) {
- this.pid = pid;
- this.ordDd = ordDd;
- }
- }
-
- [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 GetPrescriptionConsentListResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetPrescriptionConsentListResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListResponseBody Body;
-
- public GetPrescriptionConsentListResponse() {
- }
-
- public GetPrescriptionConsentListResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListResponseBody 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 GetPrescriptionConsentListResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetPrescriptionConsentListResult;
-
- public GetPrescriptionConsentListResponseBody() {
- }
-
- public GetPrescriptionConsentListResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetPrescriptionConsentListResult) {
- this.GetPrescriptionConsentListResult = GetPrescriptionConsentListResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentBySearchRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentBySearch", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchRequestBody Body;
-
- public GetConsentBySearchRequest() {
- }
-
- public GetConsentBySearchRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetConsentBySearchRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string categoryId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string keyWord;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string instCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string toDay;
-
- public GetConsentBySearchRequestBody() {
- }
-
- public GetConsentBySearchRequestBody(string categoryId, string keyWord, string instCd, string toDay) {
- this.categoryId = categoryId;
- this.keyWord = keyWord;
- this.instCd = instCd;
- 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 GetConsentBySearchResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentBySearchResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchResponseBody Body;
-
- public GetConsentBySearchResponse() {
- }
-
- public GetConsentBySearchResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetConsentBySearchResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentBySearchResult;
-
- public GetConsentBySearchResponseBody() {
- }
-
- public GetConsentBySearchResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentBySearchResult) {
- this.GetConsentBySearchResult = GetConsentBySearchResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentSetListRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentSetList", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListRequestBody Body;
-
- public GetConsentSetListRequest() {
- }
-
- public GetConsentSetListRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListRequestBody 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 GetConsentSetListRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string instCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string toDay;
-
- public GetConsentSetListRequestBody() {
- }
-
- public GetConsentSetListRequestBody(string userId, string instCd, string toDay) {
- this.userId = userId;
- this.instCd = instCd;
- 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 GetConsentSetListResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentSetListResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListResponseBody Body;
-
- public GetConsentSetListResponse() {
- }
-
- public GetConsentSetListResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListResponseBody 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 GetConsentSetListResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentSetListResult;
-
- public GetConsentSetListResponseBody() {
- }
-
- public GetConsentSetListResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentSetListResult) {
- this.GetConsentSetListResult = GetConsentSetListResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentByFormcdRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentByFormcd", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdRequestBody Body;
-
- public GetConsentByFormcdRequest() {
- }
-
- public GetConsentByFormcdRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetConsentByFormcdRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string formCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string instCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string today;
-
- public GetConsentByFormcdRequestBody() {
- }
-
- public GetConsentByFormcdRequestBody(string formCd, string instCd, string today) {
- this.formCd = formCd;
- this.instCd = instCd;
- 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 GetConsentByFormcdResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentByFormcdResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdResponseBody Body;
-
- public GetConsentByFormcdResponse() {
- }
-
- public GetConsentByFormcdResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetConsentByFormcdResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentByFormcdResult;
-
- public GetConsentByFormcdResponseBody() {
- }
-
- public GetConsentByFormcdResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentByFormcdResult) {
- this.GetConsentByFormcdResult = GetConsentByFormcdResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class ReUseCertifyConsentFlagRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="ReUseCertifyConsentFlag", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagRequestBody Body;
-
- public ReUseCertifyConsentFlagRequest() {
- }
-
- public ReUseCertifyConsentFlagRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagRequestBody 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 ReUseCertifyConsentFlagRequestBody {
-
- [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 cretNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string ordType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string recDd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string userId;
-
- public ReUseCertifyConsentFlagRequestBody() {
- }
-
- public ReUseCertifyConsentFlagRequestBody(string pid, string ordDd, string cretNo, string ordType, string recDd, string userId) {
- this.pid = pid;
- this.ordDd = ordDd;
- this.cretNo = cretNo;
- this.ordType = ordType;
- this.recDd = recDd;
- this.userId = userId;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class ReUseCertifyConsentFlagResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="ReUseCertifyConsentFlagResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagResponseBody Body;
-
- public ReUseCertifyConsentFlagResponse() {
- }
-
- public ReUseCertifyConsentFlagResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagResponseBody 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 ReUseCertifyConsentFlagResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData ReUseCertifyConsentFlagResult;
-
- public ReUseCertifyConsentFlagResponseBody() {
- }
-
- public ReUseCertifyConsentFlagResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData ReUseCertifyConsentFlagResult) {
- this.ReUseCertifyConsentFlagResult = ReUseCertifyConsentFlagResult;
- }
- }
-
- [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 getSaveAllFlagRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getSaveAllFlag", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagRequestBody Body;
-
- public getSaveAllFlagRequest() {
- }
-
- public getSaveAllFlagRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagRequestBody 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 getSaveAllFlagRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string instcd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string userid;
-
- public getSaveAllFlagRequestBody() {
- }
-
- public getSaveAllFlagRequestBody(string instcd, string userid) {
- this.instcd = instcd;
- this.userid = userid;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getSaveAllFlagResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getSaveAllFlagResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagResponseBody Body;
-
- public getSaveAllFlagResponse() {
- }
-
- public getSaveAllFlagResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagResponseBody 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 getSaveAllFlagResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData getSaveAllFlagResult;
-
- public getSaveAllFlagResponseBody() {
- }
-
- public getSaveAllFlagResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData getSaveAllFlagResult) {
- this.getSaveAllFlagResult = getSaveAllFlagResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentImageRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentImage", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageRequestBody Body;
-
- public GetConsentImageRequest() {
- }
-
- public GetConsentImageRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetConsentImageRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string consentMstRid;
-
- public GetConsentImageRequestBody() {
- }
-
- public GetConsentImageRequestBody(string consentMstRid) {
- this.consentMstRid = consentMstRid;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentImageResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentImageResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageResponseBody Body;
-
- public GetConsentImageResponse() {
- }
-
- public GetConsentImageResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetConsentImageResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentImageVO[] GetConsentImageResult;
-
- public GetConsentImageResponseBody() {
- }
-
- public GetConsentImageResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentImageVO[] GetConsentImageResult) {
- this.GetConsentImageResult = GetConsentImageResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentAudioCountRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentAudioCount", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountRequestBody Body;
-
- public GetConsentAudioCountRequest() {
- }
-
- public GetConsentAudioCountRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountRequestBody 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 GetConsentAudioCountRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string consentMstRid;
-
- public GetConsentAudioCountRequestBody() {
- }
-
- public GetConsentAudioCountRequestBody(string consentMstRid) {
- this.consentMstRid = consentMstRid;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentAudioCountResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentAudioCountResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountResponseBody Body;
-
- public GetConsentAudioCountResponse() {
- }
-
- public GetConsentAudioCountResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountResponseBody 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 GetConsentAudioCountResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData GetConsentAudioCountResult;
-
- public GetConsentAudioCountResponseBody() {
- }
-
- public GetConsentAudioCountResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData GetConsentAudioCountResult) {
- this.GetConsentAudioCountResult = GetConsentAudioCountResult;
- }
- }
-
- [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 GetConsentAudioRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentAudio", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioRequestBody Body;
-
- public GetConsentAudioRequest() {
- }
-
- public GetConsentAudioRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioRequestBody 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 GetConsentAudioRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string consentMstRid;
-
- public GetConsentAudioRequestBody() {
- }
-
- public GetConsentAudioRequestBody(string consentMstRid) {
- this.consentMstRid = consentMstRid;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentAudioResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentAudioResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioResponseBody Body;
-
- public GetConsentAudioResponse() {
- }
-
- public GetConsentAudioResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioResponseBody 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 GetConsentAudioResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentImageVO[] GetConsentAudioResult;
-
- public GetConsentAudioResponseBody() {
- }
-
- public GetConsentAudioResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentImageVO[] GetConsentAudioResult) {
- this.GetConsentAudioResult = GetConsentAudioResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class saveDeleteRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="saveDelete", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteRequestBody Body;
-
- public saveDeleteRequest() {
- }
-
- public saveDeleteRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class saveDeleteRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string consentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string reasonForUseN;
-
- public saveDeleteRequestBody() {
- }
-
- public saveDeleteRequestBody(string userId, string consentMstRid, string reasonForUseN) {
- this.userId = userId;
- this.consentMstRid = consentMstRid;
- this.reasonForUseN = reasonForUseN;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class saveDeleteResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="saveDeleteResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteResponseBody Body;
-
- public saveDeleteResponse() {
- }
-
- public saveDeleteResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class saveDeleteResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData saveDeleteResult;
-
- public saveDeleteResponseBody() {
- }
-
- public saveDeleteResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData saveDeleteResult) {
- this.saveDeleteResult = saveDeleteResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveTempDataRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveTempData", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataRequestBody Body;
-
- public SaveTempDataRequest() {
- }
-
- public SaveTempDataRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveTempDataRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string userDeptCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string pid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string formId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string formCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string patientDeptCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string formXml;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string dataXml;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=8)]
- public int consentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=9)]
- public int reWriteConsentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
- public string deviceType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
- public string deviceMacAddr;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
- public string ordType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
- public string instCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
- public string inDd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
- public string dSchDd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=16)]
- public string ward;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=17)]
- public string roomCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=18)]
- public string ocrTag;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=19)]
- public int cretNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=20)]
- public string mainDrId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=21)]
- public string formPageCnt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=22)]
- public string actionKind;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=23)]
- public string opRsrvNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=24)]
- public string consentState;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=25)]
- public int orderNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=26)]
- public string orderName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=27)]
- public string orderCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=28)]
- public string audioFileJson;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=29)]
- public string audioFileSize;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=30)]
- public string imageFileJson;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=31)]
- public string fileSize;
-
- public SaveTempDataRequestBody() {
- }
-
- public SaveTempDataRequestBody(
- string userId,
- string userDeptCd,
- string pid,
- string formId,
- string formCd,
- string patientDeptCd,
- string formXml,
- string dataXml,
- int consentMstRid,
- int reWriteConsentMstRid,
- string deviceType,
- string deviceMacAddr,
- string ordType,
- string instCd,
- string inDd,
- string dSchDd,
- string ward,
- string roomCd,
- string ocrTag,
- int cretNo,
- string mainDrId,
- string formPageCnt,
- string actionKind,
- string opRsrvNo,
- string consentState,
- int orderNo,
- string orderName,
- string orderCd,
- string audioFileJson,
- string audioFileSize,
- string imageFileJson,
- string fileSize) {
- this.userId = userId;
- this.userDeptCd = userDeptCd;
- this.pid = pid;
- this.formId = formId;
- this.formCd = formCd;
- this.patientDeptCd = patientDeptCd;
- this.formXml = formXml;
- this.dataXml = dataXml;
- this.consentMstRid = consentMstRid;
- this.reWriteConsentMstRid = reWriteConsentMstRid;
- this.deviceType = deviceType;
- this.deviceMacAddr = deviceMacAddr;
- this.ordType = ordType;
- this.instCd = instCd;
- this.inDd = inDd;
- this.dSchDd = dSchDd;
- this.ward = ward;
- this.roomCd = roomCd;
- this.ocrTag = ocrTag;
- this.cretNo = cretNo;
- this.mainDrId = mainDrId;
- this.formPageCnt = formPageCnt;
- this.actionKind = actionKind;
- this.opRsrvNo = opRsrvNo;
- this.consentState = consentState;
- this.orderNo = orderNo;
- this.orderName = orderName;
- this.orderCd = orderCd;
- this.audioFileJson = audioFileJson;
- this.audioFileSize = audioFileSize;
- this.imageFileJson = imageFileJson;
- this.fileSize = fileSize;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveTempDataResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveTempDataResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataResponseBody Body;
-
- public SaveTempDataResponse() {
- }
-
- public SaveTempDataResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveTempDataResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveTempDataResult;
-
- public SaveTempDataResponseBody() {
- }
-
- public SaveTempDataResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveTempDataResult) {
- this.SaveTempDataResult = SaveTempDataResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveAutoCompleteAllRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveAutoCompleteAll", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllRequestBody Body;
-
- public SaveAutoCompleteAllRequest() {
- }
-
- public SaveAutoCompleteAllRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllRequestBody 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 SaveAutoCompleteAllRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string userName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string macAddress;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string json;
-
- public SaveAutoCompleteAllRequestBody() {
- }
-
- public SaveAutoCompleteAllRequestBody(string userId, string userName, string macAddress, string json) {
- this.userId = userId;
- this.userName = userName;
- this.macAddress = macAddress;
- this.json = json;
- }
- }
-
- [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 SaveAutoCompleteAllResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveAutoCompleteAllResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllResponseBody Body;
-
- public SaveAutoCompleteAllResponse() {
- }
-
- public SaveAutoCompleteAllResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllResponseBody 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 SaveAutoCompleteAllResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveAutoCompleteAllResult;
-
- public SaveAutoCompleteAllResponseBody() {
- }
-
- public SaveAutoCompleteAllResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveAutoCompleteAllResult) {
- this.SaveAutoCompleteAllResult = SaveAutoCompleteAllResult;
- }
- }
-
- [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 imrTestRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="imrTest", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestRequestBody Body;
-
- public imrTestRequest() {
- }
-
- public imrTestRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestRequestBody 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 imrTestRequestBody {
-
- public imrTestRequestBody() {
- }
- }
-
- [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 imrTestResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="imrTestResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestResponseBody Body;
-
- public imrTestResponse() {
- }
-
- public imrTestResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestResponseBody 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 imrTestResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ImrData imrTestResult;
-
- public imrTestResponseBody() {
- }
-
- public imrTestResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.ImrData imrTestResult) {
- this.imrTestResult = imrTestResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveCompleteAllRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveCompleteAll", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllRequestBody Body;
-
- public SaveCompleteAllRequest() {
- }
-
- public SaveCompleteAllRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveCompleteAllRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string userDeptCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string pid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string formId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string formCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string patientDeptCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string formXml;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string dataXml;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=8)]
- public int consentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=9)]
- public int reWriteConsentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
- public string deviceType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
- public string deviceMacAddr;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
- public string ordType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
- public string instCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
- public string inDd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
- public string dSchDd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=16)]
- public string ward;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=17)]
- public string roomCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=18)]
- public string ocrTag;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=19)]
- public int cretNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=20)]
- public string mainDrId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=21)]
- public string formPageCnt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=22)]
- public string actionKind;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=23)]
- public string opRsrvNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=24)]
- public string consentState;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=25)]
- public int orderNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=26)]
- public string orderName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=27)]
- public string orderCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=28)]
- public string imageFileJson;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=29)]
- public string fileSize;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=30)]
- public string certResult;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=31)]
- public string certTarget;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=32)]
- public string audioFileJson;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=33)]
- public string audioFileSize;
-
- public SaveCompleteAllRequestBody() {
- }
-
- public SaveCompleteAllRequestBody(
- string userId,
- string userDeptCd,
- string pid,
- string formId,
- string formCd,
- string patientDeptCd,
- string formXml,
- string dataXml,
- int consentMstRid,
- int reWriteConsentMstRid,
- string deviceType,
- string deviceMacAddr,
- string ordType,
- string instCd,
- string inDd,
- string dSchDd,
- string ward,
- string roomCd,
- string ocrTag,
- int cretNo,
- string mainDrId,
- string formPageCnt,
- string actionKind,
- string opRsrvNo,
- string consentState,
- int orderNo,
- string orderName,
- string orderCd,
- string imageFileJson,
- string fileSize,
- string certResult,
- string certTarget,
- string audioFileJson,
- string audioFileSize) {
- this.userId = userId;
- this.userDeptCd = userDeptCd;
- this.pid = pid;
- this.formId = formId;
- this.formCd = formCd;
- this.patientDeptCd = patientDeptCd;
- this.formXml = formXml;
- this.dataXml = dataXml;
- this.consentMstRid = consentMstRid;
- this.reWriteConsentMstRid = reWriteConsentMstRid;
- this.deviceType = deviceType;
- this.deviceMacAddr = deviceMacAddr;
- this.ordType = ordType;
- this.instCd = instCd;
- this.inDd = inDd;
- this.dSchDd = dSchDd;
- this.ward = ward;
- this.roomCd = roomCd;
- this.ocrTag = ocrTag;
- this.cretNo = cretNo;
- this.mainDrId = mainDrId;
- this.formPageCnt = formPageCnt;
- this.actionKind = actionKind;
- this.opRsrvNo = opRsrvNo;
- this.consentState = consentState;
- this.orderNo = orderNo;
- this.orderName = orderName;
- this.orderCd = orderCd;
- this.imageFileJson = imageFileJson;
- this.fileSize = fileSize;
- this.certResult = certResult;
- this.certTarget = certTarget;
- this.audioFileJson = audioFileJson;
- this.audioFileSize = audioFileSize;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveCompleteAllResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveCompleteAllResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllResponseBody Body;
-
- public SaveCompleteAllResponse() {
- }
-
- public SaveCompleteAllResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveCompleteAllResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveCompleteAllResult;
-
- public SaveCompleteAllResponseBody() {
- }
-
- public SaveCompleteAllResponseBody(CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveCompleteAllResult) {
- this.SaveCompleteAllResult = SaveCompleteAllResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentFormXmlRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentFormXml", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlRequestBody Body;
-
- public GetConsentFormXmlRequest() {
- }
-
- public GetConsentFormXmlRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetConsentFormXmlRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=0)]
- public int consentMstRid;
-
- public GetConsentFormXmlRequestBody() {
- }
-
- public GetConsentFormXmlRequestBody(int consentMstRid) {
- this.consentMstRid = consentMstRid;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class GetConsentFormXmlResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="GetConsentFormXmlResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlResponseBody Body;
-
- public GetConsentFormXmlResponse() {
- }
-
- public GetConsentFormXmlResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class GetConsentFormXmlResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string GetConsentFormXmlResult;
-
- public GetConsentFormXmlResponseBody() {
- }
-
- public GetConsentFormXmlResponseBody(string GetConsentFormXmlResult) {
- this.GetConsentFormXmlResult = GetConsentFormXmlResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SavePrintOutRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SavePrintOut", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutRequestBody Body;
-
- public SavePrintOutRequest() {
- }
-
- public SavePrintOutRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SavePrintOutRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string patientCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string clnDeptCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=3)]
- public int formRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string formCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=5)]
- public int consentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=6)]
- public int reissueConsentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string formXml;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
- public string dataXml;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
- public string deviceType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
- public string deviceIdentNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
- public string vistType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
- public string hosType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
- public string clnDate;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
- public string ward;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
- public string roomcd;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=16)]
- public int orderNo;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=17)]
- public string orderName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=18)]
- public string orderCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=19)]
- public string ocrCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=20)]
- public int cretno;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=21)]
- public string createUserName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=22)]
- public string modifyUserName;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=23)]
- public string mainDrId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=24)]
- public string userDeptCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=25)]
- public string pageCnt;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=26)]
- public string actKind;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=27)]
- public string clientType;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=28)]
- public string opRsrvNo;
-
- public SavePrintOutRequestBody() {
- }
-
- public SavePrintOutRequestBody(
- string userId,
- string patientCode,
- string clnDeptCode,
- int formRid,
- string formCd,
- int consentMstRid,
- int reissueConsentMstRid,
- string formXml,
- string dataXml,
- string deviceType,
- string deviceIdentNo,
- string vistType,
- string hosType,
- string clnDate,
- string ward,
- string roomcd,
- int orderNo,
- string orderName,
- string orderCd,
- string ocrCode,
- int cretno,
- string createUserName,
- string modifyUserName,
- string mainDrId,
- string userDeptCd,
- string pageCnt,
- string actKind,
- string clientType,
- string opRsrvNo) {
- this.userId = userId;
- this.patientCode = patientCode;
- this.clnDeptCode = clnDeptCode;
- this.formRid = formRid;
- this.formCd = formCd;
- this.consentMstRid = consentMstRid;
- this.reissueConsentMstRid = reissueConsentMstRid;
- this.formXml = formXml;
- this.dataXml = dataXml;
- this.deviceType = deviceType;
- this.deviceIdentNo = deviceIdentNo;
- this.vistType = vistType;
- this.hosType = hosType;
- this.clnDate = clnDate;
- this.ward = ward;
- this.roomcd = roomcd;
- this.orderNo = orderNo;
- this.orderName = orderName;
- this.orderCd = orderCd;
- this.ocrCode = ocrCode;
- this.cretno = cretno;
- this.createUserName = createUserName;
- this.modifyUserName = modifyUserName;
- this.mainDrId = mainDrId;
- this.userDeptCd = userDeptCd;
- this.pageCnt = pageCnt;
- this.actKind = actKind;
- this.clientType = clientType;
- this.opRsrvNo = opRsrvNo;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SavePrintOutResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SavePrintOutResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutResponseBody Body;
-
- public SavePrintOutResponse() {
- }
-
- public SavePrintOutResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SavePrintOutResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=0)]
- public int SavePrintOutResult;
-
- public SavePrintOutResponseBody() {
- }
-
- public SavePrintOutResponseBody(int SavePrintOutResult) {
- this.SavePrintOutResult = SavePrintOutResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveMedicalHistoryRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveMedicalHistory", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryRequestBody Body;
-
- public SaveMedicalHistoryRequest() {
- }
-
- public SaveMedicalHistoryRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveMedicalHistoryRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string patientCode;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string clnDate;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string bp;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string dm;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string heart;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string kidney;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=6)]
- public string respiration;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=7)]
- public string hx;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=8)]
- public string allergy;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=9)]
- public string drug;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=10)]
- public string smoking;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=11)]
- public string idio;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=12)]
- public string nacrotics;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=13)]
- public string airway;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=14)]
- public string hemorrhage;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=15)]
- public string status_etc;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=16)]
- public string userId;
-
- public SaveMedicalHistoryRequestBody() {
- }
-
- public SaveMedicalHistoryRequestBody(
- string patientCode,
- string clnDate,
- string bp,
- string dm,
- string heart,
- string kidney,
- string respiration,
- string hx,
- string allergy,
- string drug,
- string smoking,
- string idio,
- string nacrotics,
- string airway,
- string hemorrhage,
- string status_etc,
- string userId) {
- this.patientCode = patientCode;
- this.clnDate = clnDate;
- this.bp = bp;
- this.dm = dm;
- this.heart = heart;
- this.kidney = kidney;
- this.respiration = respiration;
- this.hx = hx;
- this.allergy = allergy;
- this.drug = drug;
- this.smoking = smoking;
- this.idio = idio;
- this.nacrotics = nacrotics;
- this.airway = airway;
- this.hemorrhage = hemorrhage;
- this.status_etc = status_etc;
- this.userId = userId;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveMedicalHistoryResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveMedicalHistoryResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryResponseBody Body;
-
- public SaveMedicalHistoryResponse() {
- }
-
- public SaveMedicalHistoryResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveMedicalHistoryResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string SaveMedicalHistoryResult;
-
- public SaveMedicalHistoryResponseBody() {
- }
-
- public SaveMedicalHistoryResponseBody(string SaveMedicalHistoryResult) {
- this.SaveMedicalHistoryResult = SaveMedicalHistoryResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveImageUploadInfoRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveImageUploadInfo", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoRequestBody Body;
-
- public SaveImageUploadInfoRequest() {
- }
-
- public SaveImageUploadInfoRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveImageUploadInfoRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string consentState;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string imageFileName;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=2)]
- public int consentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=4)]
- public int formRid;
-
- public SaveImageUploadInfoRequestBody() {
- }
-
- public SaveImageUploadInfoRequestBody(string consentState, string imageFileName, int consentMstRid, string userId, int formRid) {
- this.consentState = consentState;
- this.imageFileName = imageFileName;
- this.consentMstRid = consentMstRid;
- this.userId = userId;
- this.formRid = formRid;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveImageUploadInfoResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveImageUploadInfoResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoResponseBody Body;
-
- public SaveImageUploadInfoResponse() {
- }
-
- public SaveImageUploadInfoResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveImageUploadInfoResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=0)]
- public int SaveImageUploadInfoResult;
-
- public SaveImageUploadInfoResponseBody() {
- }
-
- public SaveImageUploadInfoResponseBody(int SaveImageUploadInfoResult) {
- this.SaveImageUploadInfoResult = SaveImageUploadInfoResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveImageSignInfoRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveImageSignInfo", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoRequestBody Body;
-
- public SaveImageSignInfoRequest() {
- }
-
- public SaveImageSignInfoRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class SaveImageSignInfoRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string consentState;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=1)]
- public int consentMstRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=2)]
- public int consentImageRid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=3)]
- public string userId;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=4)]
- public string certTarget;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=5)]
- public string sCertResult;
-
- public SaveImageSignInfoRequestBody() {
- }
-
- public SaveImageSignInfoRequestBody(string consentState, int consentMstRid, int consentImageRid, string userId, string certTarget, string sCertResult) {
- this.consentState = consentState;
- this.consentMstRid = consentMstRid;
- this.consentImageRid = consentImageRid;
- this.userId = userId;
- this.certTarget = certTarget;
- this.sCertResult = sCertResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class SaveImageSignInfoResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="SaveImageSignInfoResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoResponseBody Body;
-
- public SaveImageSignInfoResponse() {
- }
-
- public SaveImageSignInfoResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute()]
- public partial class SaveImageSignInfoResponseBody {
-
- public SaveImageSignInfoResponseBody() {
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class CheckConsentStateRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="CheckConsentState", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateRequestBody Body;
-
- public CheckConsentStateRequest() {
- }
-
- public CheckConsentStateRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class CheckConsentStateRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=0)]
- public int consentmstrid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string consent_state;
-
- public CheckConsentStateRequestBody() {
- }
-
- public CheckConsentStateRequestBody(int consentmstrid, string consent_state) {
- this.consentmstrid = consentmstrid;
- this.consent_state = consent_state;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class CheckConsentStateResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="CheckConsentStateResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateResponseBody Body;
-
- public CheckConsentStateResponse() {
- }
-
- public CheckConsentStateResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class CheckConsentStateResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(Order=0)]
- public int CheckConsentStateResult;
-
- public CheckConsentStateResponseBody() {
- }
-
- public CheckConsentStateResponseBody(int CheckConsentStateResult) {
- this.CheckConsentStateResult = CheckConsentStateResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getOcrStringRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getOcrString", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringRequestBody Body;
-
- public getOcrStringRequest() {
- }
-
- public getOcrStringRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getOcrStringRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string formCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string dutinstcd;
-
- public getOcrStringRequestBody() {
- }
-
- public getOcrStringRequestBody(string formCd, string dutinstcd) {
- this.formCd = formCd;
- this.dutinstcd = dutinstcd;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getOcrStringResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getOcrStringResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringResponseBody Body;
-
- public getOcrStringResponse() {
- }
-
- public getOcrStringResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getOcrStringResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string getOcrStringResult;
-
- public getOcrStringResponseBody() {
- }
-
- public getOcrStringResponseBody(string getOcrStringResult) {
- this.getOcrStringResult = getOcrStringResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getCertUseYnRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getCertUseYn", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnRequestBody Body;
-
- public getCertUseYnRequest() {
- }
-
- public getCertUseYnRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getCertUseYnRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string formCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string dutinstcd;
-
- public getCertUseYnRequestBody() {
- }
-
- public getCertUseYnRequestBody(string formCd, string dutinstcd) {
- this.formCd = formCd;
- this.dutinstcd = dutinstcd;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getCertUseYnResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getCertUseYnResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnResponseBody Body;
-
- public getCertUseYnResponse() {
- }
-
- public getCertUseYnResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getCertUseYnResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string getCertUseYnResult;
-
- public getCertUseYnResponseBody() {
- }
-
- public getCertUseYnResponseBody(string getCertUseYnResult) {
- this.getCertUseYnResult = getCertUseYnResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getCertUseYnDataRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getCertUseYnData", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataRequestBody Body;
-
- public getCertUseYnDataRequest() {
- }
-
- public getCertUseYnDataRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getCertUseYnDataRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string formCd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string dutinstcd;
-
- public getCertUseYnDataRequestBody() {
- }
-
- public getCertUseYnDataRequestBody(string formCd, string dutinstcd) {
- this.formCd = formCd;
- this.dutinstcd = dutinstcd;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getCertUseYnDataResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getCertUseYnDataResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataResponseBody Body;
-
- public getCertUseYnDataResponse() {
- }
-
- public getCertUseYnDataResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getCertUseYnDataResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string getCertUseYnDataResult;
-
- public getCertUseYnDataResponseBody() {
- }
-
- public getCertUseYnDataResponseBody(string getCertUseYnDataResult) {
- this.getCertUseYnDataResult = getCertUseYnDataResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getDualViewModeRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getDualViewMode", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeRequestBody Body;
-
- public getDualViewModeRequest() {
- }
-
- public getDualViewModeRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getDualViewModeRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string dutinstcd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string ipaddr;
-
- public getDualViewModeRequestBody() {
- }
-
- public getDualViewModeRequestBody(string dutinstcd, string ipaddr) {
- this.dutinstcd = dutinstcd;
- this.ipaddr = ipaddr;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getDualViewModeResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getDualViewModeResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeResponseBody Body;
-
- public getDualViewModeResponse() {
- }
-
- public getDualViewModeResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class getDualViewModeResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string getDualViewModeResult;
-
- public getDualViewModeResponseBody() {
- }
-
- public getDualViewModeResponseBody(string getDualViewModeResult) {
- this.getDualViewModeResult = getDualViewModeResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class updateCertifyCompleteRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="updateCertifyComplete", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteRequestBody Body;
-
- public updateCertifyCompleteRequest() {
- }
-
- public updateCertifyCompleteRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class updateCertifyCompleteRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string consent_rids;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string ocrtags;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string instcd;
-
- public updateCertifyCompleteRequestBody() {
- }
-
- public updateCertifyCompleteRequestBody(string consent_rids, string ocrtags, string instcd) {
- this.consent_rids = consent_rids;
- this.ocrtags = ocrtags;
- this.instcd = instcd;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class updateCertifyCompleteResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="updateCertifyCompleteResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteResponseBody Body;
-
- public updateCertifyCompleteResponse() {
- }
-
- public updateCertifyCompleteResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class updateCertifyCompleteResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string updateCertifyCompleteResult;
-
- public updateCertifyCompleteResponseBody() {
- }
-
- public updateCertifyCompleteResponseBody(string updateCertifyCompleteResult) {
- this.updateCertifyCompleteResult = updateCertifyCompleteResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class updatePrintHistoryRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="updatePrintHistory", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryRequestBody Body;
-
- public updatePrintHistoryRequest() {
- }
-
- public updatePrintHistoryRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class updatePrintHistoryRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string pid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string ocrtag;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string instcd;
-
- public updatePrintHistoryRequestBody() {
- }
-
- public updatePrintHistoryRequestBody(string pid, string ocrtag, string instcd) {
- this.pid = pid;
- this.ocrtag = ocrtag;
- this.instcd = instcd;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class updatePrintHistoryResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="updatePrintHistoryResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryResponseBody Body;
-
- public updatePrintHistoryResponse() {
- }
-
- public updatePrintHistoryResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute()]
- public partial class updatePrintHistoryResponseBody {
-
- public updatePrintHistoryResponseBody() {
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class duplicateCertConsentRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="duplicateCertConsent", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentRequestBody Body;
-
- public duplicateCertConsentRequest() {
- }
-
- public duplicateCertConsentRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentRequestBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class duplicateCertConsentRequestBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string pid;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
- public string instcd;
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
- public string formcd;
-
- public duplicateCertConsentRequestBody() {
- }
-
- public duplicateCertConsentRequestBody(string pid, string instcd, string formcd) {
- this.pid = pid;
- this.instcd = instcd;
- this.formcd = formcd;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class duplicateCertConsentResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="duplicateCertConsentResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentResponseBody Body;
-
- public duplicateCertConsentResponse() {
- }
-
- public duplicateCertConsentResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentResponseBody Body) {
- this.Body = Body;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tempuri.org/")]
- public partial class duplicateCertConsentResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string duplicateCertConsentResult;
-
- public duplicateCertConsentResponseBody() {
- }
-
- public duplicateCertConsentResponseBody(string duplicateCertConsentResult) {
- this.duplicateCertConsentResult = duplicateCertConsentResult;
- }
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
- public partial class getUserTableGrantsRequest {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getUserTableGrants", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsRequestBody Body;
-
- public getUserTableGrantsRequest() {
- }
-
- public getUserTableGrantsRequest(CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsRequestBody 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 getUserTableGrantsRequestBody {
-
- public getUserTableGrantsRequestBody() {
- }
- }
-
- [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 getUserTableGrantsResponse {
-
- [System.ServiceModel.MessageBodyMemberAttribute(Name="getUserTableGrantsResponse", Namespace="http://tempuri.org/", Order=0)]
- public CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsResponseBody Body;
-
- public getUserTableGrantsResponse() {
- }
-
- public getUserTableGrantsResponse(CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsResponseBody 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 getUserTableGrantsResponseBody {
-
- [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=0)]
- public string getUserTableGrantsResult;
-
- public getUserTableGrantsResponseBody() {
- }
-
- public getUserTableGrantsResponseBody(string getUserTableGrantsResult) {
- this.getUserTableGrantsResult = getUserTableGrantsResult;
- }
- }
-
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- public interface ConsentSvcSoapChannel : CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap, System.ServiceModel.IClientChannel {
- }
-
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
- public partial class ConsentSvcSoapClient : System.ServiceModel.ClientBase<CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap>, CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap {
-
- public ConsentSvcSoapClient() {
- }
-
- public ConsentSvcSoapClient(string endpointConfigurationName) :
- base(endpointConfigurationName) {
- }
-
- public ConsentSvcSoapClient(string endpointConfigurationName, string remoteAddress) :
- base(endpointConfigurationName, remoteAddress) {
- }
-
- public ConsentSvcSoapClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
- base(endpointConfigurationName, remoteAddress) {
- }
-
- public ConsentSvcSoapClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
- base(binding, remoteAddress) {
- }
-
- public bool CheckWebService() {
- return base.Channel.CheckWebService();
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.getOcrType6Forms(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsRequest request) {
- return base.Channel.getOcrType6Forms(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ArrayOfString getOcrType6Forms(string dutinstcd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsRequestBody();
- inValue.Body.dutinstcd = dutinstcd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrType6FormsResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).getOcrType6Forms(inValue);
- return retVal.Body.getOcrType6FormsResult;
- }
-
- public bool CheckDatabaseConnection() {
- return base.Channel.CheckDatabaseConnection();
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetCategoryForDropdown(CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownRequest request) {
- return base.Channel.GetCategoryForDropdown(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.CategoryForDropdownVO[] GetCategoryForDropdown() {
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownRequestBody();
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetCategoryForDropdownResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetCategoryForDropdown(inValue);
- return retVal.Body.GetCategoryForDropdownResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentList(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListRequest request) {
- return base.Channel.GetConsentList(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentList(string pid, string userId, string startDt, string endDt, string consentState, string instCd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListRequestBody();
- inValue.Body.pid = pid;
- inValue.Body.userId = userId;
- inValue.Body.startDt = startDt;
- inValue.Body.endDt = endDt;
- inValue.Body.consentState = consentState;
- inValue.Body.instCd = instCd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentListResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentList(inValue);
- return retVal.Body.GetConsentListResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentDateList(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListRequest request) {
- return base.Channel.GetConsentDateList(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentDateList(
- string srchDd,
- string pid,
- string userId,
- string startDt,
- string endDt,
- string consentState,
- string instCd,
- string doctorId,
- string ordDeptCd,
- string patientState,
- string ordType,
- string myPatient,
- string wardCd,
- string drKind,
- string srchYN,
- string toDd,
- string mainDr,
- string mainDrChecked,
- string supportBaseCd,
- string supportDeptCd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListRequestBody();
- inValue.Body.srchDd = srchDd;
- inValue.Body.pid = pid;
- inValue.Body.userId = userId;
- inValue.Body.startDt = startDt;
- inValue.Body.endDt = endDt;
- inValue.Body.consentState = consentState;
- inValue.Body.instCd = instCd;
- inValue.Body.doctorId = doctorId;
- inValue.Body.ordDeptCd = ordDeptCd;
- inValue.Body.patientState = patientState;
- inValue.Body.ordType = ordType;
- inValue.Body.myPatient = myPatient;
- inValue.Body.wardCd = wardCd;
- inValue.Body.drKind = drKind;
- inValue.Body.srchYN = srchYN;
- inValue.Body.toDd = toDd;
- inValue.Body.mainDr = mainDr;
- inValue.Body.mainDrChecked = mainDrChecked;
- inValue.Body.supportBaseCd = supportBaseCd;
- inValue.Body.supportDeptCd = supportDeptCd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentDateListResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentDateList(inValue);
- return retVal.Body.GetConsentDateListResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetPrescriptionConsentList(CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListRequest request) {
- return base.Channel.GetPrescriptionConsentList(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetPrescriptionConsentList(string pid, string ordDd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListRequestBody();
- inValue.Body.pid = pid;
- inValue.Body.ordDd = ordDd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetPrescriptionConsentListResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetPrescriptionConsentList(inValue);
- return retVal.Body.GetPrescriptionConsentListResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentBySearch(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchRequest request) {
- return base.Channel.GetConsentBySearch(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentBySearch(string categoryId, string keyWord, string instCd, string toDay) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchRequestBody();
- inValue.Body.categoryId = categoryId;
- inValue.Body.keyWord = keyWord;
- inValue.Body.instCd = instCd;
- inValue.Body.toDay = toDay;
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentBySearchResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentBySearch(inValue);
- return retVal.Body.GetConsentBySearchResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentSetList(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListRequest request) {
- return base.Channel.GetConsentSetList(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentSetList(string userId, string instCd, string toDay) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListRequestBody();
- inValue.Body.userId = userId;
- inValue.Body.instCd = instCd;
- inValue.Body.toDay = toDay;
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentSetListResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentSetList(inValue);
- return retVal.Body.GetConsentSetListResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentByFormcd(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdRequest request) {
- return base.Channel.GetConsentByFormcd(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentVO[] GetConsentByFormcd(string formCd, string instCd, string today) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdRequestBody();
- inValue.Body.formCd = formCd;
- inValue.Body.instCd = instCd;
- inValue.Body.today = today;
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentByFormcdResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentByFormcd(inValue);
- return retVal.Body.GetConsentByFormcdResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.ReUseCertifyConsentFlag(CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagRequest request) {
- return base.Channel.ReUseCertifyConsentFlag(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData ReUseCertifyConsentFlag(string pid, string ordDd, string cretNo, string ordType, string recDd, string userId) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagRequestBody();
- inValue.Body.pid = pid;
- inValue.Body.ordDd = ordDd;
- inValue.Body.cretNo = cretNo;
- inValue.Body.ordType = ordType;
- inValue.Body.recDd = recDd;
- inValue.Body.userId = userId;
- CLIP.eForm.Consent.UI.ConsentSvcRef.ReUseCertifyConsentFlagResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).ReUseCertifyConsentFlag(inValue);
- return retVal.Body.ReUseCertifyConsentFlagResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.getSaveAllFlag(CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagRequest request) {
- return base.Channel.getSaveAllFlag(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData getSaveAllFlag(string instcd, string userid) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagRequestBody();
- inValue.Body.instcd = instcd;
- inValue.Body.userid = userid;
- CLIP.eForm.Consent.UI.ConsentSvcRef.getSaveAllFlagResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).getSaveAllFlag(inValue);
- return retVal.Body.getSaveAllFlagResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentImage(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageRequest request) {
- return base.Channel.GetConsentImage(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentImageVO[] GetConsentImage(string consentMstRid) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageRequestBody();
- inValue.Body.consentMstRid = consentMstRid;
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentImageResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentImage(inValue);
- return retVal.Body.GetConsentImageResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentAudioCount(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountRequest request) {
- return base.Channel.GetConsentAudioCount(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData GetConsentAudioCount(string consentMstRid) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountRequestBody();
- inValue.Body.consentMstRid = consentMstRid;
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioCountResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentAudioCount(inValue);
- return retVal.Body.GetConsentAudioCountResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentAudio(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioRequest request) {
- return base.Channel.GetConsentAudio(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentImageVO[] GetConsentAudio(string consentMstRid) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioRequestBody();
- inValue.Body.consentMstRid = consentMstRid;
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentAudioResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentAudio(inValue);
- return retVal.Body.GetConsentAudioResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.saveDelete(CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteRequest request) {
- return base.Channel.saveDelete(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData saveDelete(string userId, string consentMstRid, string reasonForUseN) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteRequestBody();
- inValue.Body.userId = userId;
- inValue.Body.consentMstRid = consentMstRid;
- inValue.Body.reasonForUseN = reasonForUseN;
- CLIP.eForm.Consent.UI.ConsentSvcRef.saveDeleteResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).saveDelete(inValue);
- return retVal.Body.saveDeleteResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SaveTempData(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataRequest request) {
- return base.Channel.SaveTempData(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveTempData(
- string userId,
- string userDeptCd,
- string pid,
- string formId,
- string formCd,
- string patientDeptCd,
- string formXml,
- string dataXml,
- int consentMstRid,
- int reWriteConsentMstRid,
- string deviceType,
- string deviceMacAddr,
- string ordType,
- string instCd,
- string inDd,
- string dSchDd,
- string ward,
- string roomCd,
- string ocrTag,
- int cretNo,
- string mainDrId,
- string formPageCnt,
- string actionKind,
- string opRsrvNo,
- string consentState,
- int orderNo,
- string orderName,
- string orderCd,
- string audioFileJson,
- string audioFileSize,
- string imageFileJson,
- string fileSize) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataRequestBody();
- inValue.Body.userId = userId;
- inValue.Body.userDeptCd = userDeptCd;
- inValue.Body.pid = pid;
- inValue.Body.formId = formId;
- inValue.Body.formCd = formCd;
- inValue.Body.patientDeptCd = patientDeptCd;
- inValue.Body.formXml = formXml;
- inValue.Body.dataXml = dataXml;
- inValue.Body.consentMstRid = consentMstRid;
- inValue.Body.reWriteConsentMstRid = reWriteConsentMstRid;
- inValue.Body.deviceType = deviceType;
- inValue.Body.deviceMacAddr = deviceMacAddr;
- inValue.Body.ordType = ordType;
- inValue.Body.instCd = instCd;
- inValue.Body.inDd = inDd;
- inValue.Body.dSchDd = dSchDd;
- inValue.Body.ward = ward;
- inValue.Body.roomCd = roomCd;
- inValue.Body.ocrTag = ocrTag;
- inValue.Body.cretNo = cretNo;
- inValue.Body.mainDrId = mainDrId;
- inValue.Body.formPageCnt = formPageCnt;
- inValue.Body.actionKind = actionKind;
- inValue.Body.opRsrvNo = opRsrvNo;
- inValue.Body.consentState = consentState;
- inValue.Body.orderNo = orderNo;
- inValue.Body.orderName = orderName;
- inValue.Body.orderCd = orderCd;
- inValue.Body.audioFileJson = audioFileJson;
- inValue.Body.audioFileSize = audioFileSize;
- inValue.Body.imageFileJson = imageFileJson;
- inValue.Body.fileSize = fileSize;
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveTempDataResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SaveTempData(inValue);
- return retVal.Body.SaveTempDataResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SaveAutoCompleteAll(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllRequest request) {
- return base.Channel.SaveAutoCompleteAll(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveAutoCompleteAll(string userId, string userName, string macAddress, string json) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllRequestBody();
- inValue.Body.userId = userId;
- inValue.Body.userName = userName;
- inValue.Body.macAddress = macAddress;
- inValue.Body.json = json;
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveAutoCompleteAllResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SaveAutoCompleteAll(inValue);
- return retVal.Body.SaveAutoCompleteAllResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.imrTest(CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestRequest request) {
- return base.Channel.imrTest(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.ImrData imrTest() {
- CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestRequestBody();
- CLIP.eForm.Consent.UI.ConsentSvcRef.imrTestResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).imrTest(inValue);
- return retVal.Body.imrTestResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SaveCompleteAll(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllRequest request) {
- return base.Channel.SaveCompleteAll(request);
- }
-
- public CLIP.eForm.Consent.UI.ConsentSvcRef.SingleReturnData SaveCompleteAll(
- string userId,
- string userDeptCd,
- string pid,
- string formId,
- string formCd,
- string patientDeptCd,
- string formXml,
- string dataXml,
- int consentMstRid,
- int reWriteConsentMstRid,
- string deviceType,
- string deviceMacAddr,
- string ordType,
- string instCd,
- string inDd,
- string dSchDd,
- string ward,
- string roomCd,
- string ocrTag,
- int cretNo,
- string mainDrId,
- string formPageCnt,
- string actionKind,
- string opRsrvNo,
- string consentState,
- int orderNo,
- string orderName,
- string orderCd,
- string imageFileJson,
- string fileSize,
- string certResult,
- string certTarget,
- string audioFileJson,
- string audioFileSize) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllRequestBody();
- inValue.Body.userId = userId;
- inValue.Body.userDeptCd = userDeptCd;
- inValue.Body.pid = pid;
- inValue.Body.formId = formId;
- inValue.Body.formCd = formCd;
- inValue.Body.patientDeptCd = patientDeptCd;
- inValue.Body.formXml = formXml;
- inValue.Body.dataXml = dataXml;
- inValue.Body.consentMstRid = consentMstRid;
- inValue.Body.reWriteConsentMstRid = reWriteConsentMstRid;
- inValue.Body.deviceType = deviceType;
- inValue.Body.deviceMacAddr = deviceMacAddr;
- inValue.Body.ordType = ordType;
- inValue.Body.instCd = instCd;
- inValue.Body.inDd = inDd;
- inValue.Body.dSchDd = dSchDd;
- inValue.Body.ward = ward;
- inValue.Body.roomCd = roomCd;
- inValue.Body.ocrTag = ocrTag;
- inValue.Body.cretNo = cretNo;
- inValue.Body.mainDrId = mainDrId;
- inValue.Body.formPageCnt = formPageCnt;
- inValue.Body.actionKind = actionKind;
- inValue.Body.opRsrvNo = opRsrvNo;
- inValue.Body.consentState = consentState;
- inValue.Body.orderNo = orderNo;
- inValue.Body.orderName = orderName;
- inValue.Body.orderCd = orderCd;
- inValue.Body.imageFileJson = imageFileJson;
- inValue.Body.fileSize = fileSize;
- inValue.Body.certResult = certResult;
- inValue.Body.certTarget = certTarget;
- inValue.Body.audioFileJson = audioFileJson;
- inValue.Body.audioFileSize = audioFileSize;
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveCompleteAllResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SaveCompleteAll(inValue);
- return retVal.Body.SaveCompleteAllResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.GetConsentFormXml(CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlRequest request) {
- return base.Channel.GetConsentFormXml(request);
- }
-
- public string GetConsentFormXml(int consentMstRid) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlRequestBody();
- inValue.Body.consentMstRid = consentMstRid;
- CLIP.eForm.Consent.UI.ConsentSvcRef.GetConsentFormXmlResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).GetConsentFormXml(inValue);
- return retVal.Body.GetConsentFormXmlResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SavePrintOut(CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutRequest request) {
- return base.Channel.SavePrintOut(request);
- }
-
- public int SavePrintOut(
- string userId,
- string patientCode,
- string clnDeptCode,
- int formRid,
- string formCd,
- int consentMstRid,
- int reissueConsentMstRid,
- string formXml,
- string dataXml,
- string deviceType,
- string deviceIdentNo,
- string vistType,
- string hosType,
- string clnDate,
- string ward,
- string roomcd,
- int orderNo,
- string orderName,
- string orderCd,
- string ocrCode,
- int cretno,
- string createUserName,
- string modifyUserName,
- string mainDrId,
- string userDeptCd,
- string pageCnt,
- string actKind,
- string clientType,
- string opRsrvNo) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutRequestBody();
- inValue.Body.userId = userId;
- inValue.Body.patientCode = patientCode;
- inValue.Body.clnDeptCode = clnDeptCode;
- inValue.Body.formRid = formRid;
- inValue.Body.formCd = formCd;
- inValue.Body.consentMstRid = consentMstRid;
- inValue.Body.reissueConsentMstRid = reissueConsentMstRid;
- inValue.Body.formXml = formXml;
- inValue.Body.dataXml = dataXml;
- inValue.Body.deviceType = deviceType;
- inValue.Body.deviceIdentNo = deviceIdentNo;
- inValue.Body.vistType = vistType;
- inValue.Body.hosType = hosType;
- inValue.Body.clnDate = clnDate;
- inValue.Body.ward = ward;
- inValue.Body.roomcd = roomcd;
- inValue.Body.orderNo = orderNo;
- inValue.Body.orderName = orderName;
- inValue.Body.orderCd = orderCd;
- inValue.Body.ocrCode = ocrCode;
- inValue.Body.cretno = cretno;
- inValue.Body.createUserName = createUserName;
- inValue.Body.modifyUserName = modifyUserName;
- inValue.Body.mainDrId = mainDrId;
- inValue.Body.userDeptCd = userDeptCd;
- inValue.Body.pageCnt = pageCnt;
- inValue.Body.actKind = actKind;
- inValue.Body.clientType = clientType;
- inValue.Body.opRsrvNo = opRsrvNo;
- CLIP.eForm.Consent.UI.ConsentSvcRef.SavePrintOutResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SavePrintOut(inValue);
- return retVal.Body.SavePrintOutResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SaveMedicalHistory(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryRequest request) {
- return base.Channel.SaveMedicalHistory(request);
- }
-
- public string SaveMedicalHistory(
- string patientCode,
- string clnDate,
- string bp,
- string dm,
- string heart,
- string kidney,
- string respiration,
- string hx,
- string allergy,
- string drug,
- string smoking,
- string idio,
- string nacrotics,
- string airway,
- string hemorrhage,
- string status_etc,
- string userId) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryRequestBody();
- inValue.Body.patientCode = patientCode;
- inValue.Body.clnDate = clnDate;
- inValue.Body.bp = bp;
- inValue.Body.dm = dm;
- inValue.Body.heart = heart;
- inValue.Body.kidney = kidney;
- inValue.Body.respiration = respiration;
- inValue.Body.hx = hx;
- inValue.Body.allergy = allergy;
- inValue.Body.drug = drug;
- inValue.Body.smoking = smoking;
- inValue.Body.idio = idio;
- inValue.Body.nacrotics = nacrotics;
- inValue.Body.airway = airway;
- inValue.Body.hemorrhage = hemorrhage;
- inValue.Body.status_etc = status_etc;
- inValue.Body.userId = userId;
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveMedicalHistoryResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SaveMedicalHistory(inValue);
- return retVal.Body.SaveMedicalHistoryResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SaveImageUploadInfo(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoRequest request) {
- return base.Channel.SaveImageUploadInfo(request);
- }
-
- public int SaveImageUploadInfo(string consentState, string imageFileName, int consentMstRid, string userId, int formRid) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoRequestBody();
- inValue.Body.consentState = consentState;
- inValue.Body.imageFileName = imageFileName;
- inValue.Body.consentMstRid = consentMstRid;
- inValue.Body.userId = userId;
- inValue.Body.formRid = formRid;
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageUploadInfoResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SaveImageUploadInfo(inValue);
- return retVal.Body.SaveImageUploadInfoResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.SaveImageSignInfo(CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoRequest request) {
- return base.Channel.SaveImageSignInfo(request);
- }
-
- public void SaveImageSignInfo(string consentState, int consentMstRid, int consentImageRid, string userId, string certTarget, string sCertResult) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoRequestBody();
- inValue.Body.consentState = consentState;
- inValue.Body.consentMstRid = consentMstRid;
- inValue.Body.consentImageRid = consentImageRid;
- inValue.Body.userId = userId;
- inValue.Body.certTarget = certTarget;
- inValue.Body.sCertResult = sCertResult;
- CLIP.eForm.Consent.UI.ConsentSvcRef.SaveImageSignInfoResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).SaveImageSignInfo(inValue);
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.CheckConsentState(CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateRequest request) {
- return base.Channel.CheckConsentState(request);
- }
-
- public int CheckConsentState(int consentmstrid, string consent_state) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateRequestBody();
- inValue.Body.consentmstrid = consentmstrid;
- inValue.Body.consent_state = consent_state;
- CLIP.eForm.Consent.UI.ConsentSvcRef.CheckConsentStateResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).CheckConsentState(inValue);
- return retVal.Body.CheckConsentStateResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.getOcrString(CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringRequest request) {
- return base.Channel.getOcrString(request);
- }
-
- public string getOcrString(string formCd, string dutinstcd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringRequestBody();
- inValue.Body.formCd = formCd;
- inValue.Body.dutinstcd = dutinstcd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.getOcrStringResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).getOcrString(inValue);
- return retVal.Body.getOcrStringResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.getCertUseYn(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnRequest request) {
- return base.Channel.getCertUseYn(request);
- }
-
- public string getCertUseYn(string formCd, string dutinstcd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnRequestBody();
- inValue.Body.formCd = formCd;
- inValue.Body.dutinstcd = dutinstcd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).getCertUseYn(inValue);
- return retVal.Body.getCertUseYnResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.getCertUseYnData(CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataRequest request) {
- return base.Channel.getCertUseYnData(request);
- }
-
- public string getCertUseYnData(string formCd, string dutinstcd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataRequestBody();
- inValue.Body.formCd = formCd;
- inValue.Body.dutinstcd = dutinstcd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.getCertUseYnDataResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).getCertUseYnData(inValue);
- return retVal.Body.getCertUseYnDataResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.getDualViewMode(CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeRequest request) {
- return base.Channel.getDualViewMode(request);
- }
-
- public string getDualViewMode(string dutinstcd, string ipaddr) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeRequestBody();
- inValue.Body.dutinstcd = dutinstcd;
- inValue.Body.ipaddr = ipaddr;
- CLIP.eForm.Consent.UI.ConsentSvcRef.getDualViewModeResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).getDualViewMode(inValue);
- return retVal.Body.getDualViewModeResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.updateCertifyComplete(CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteRequest request) {
- return base.Channel.updateCertifyComplete(request);
- }
-
- public string updateCertifyComplete(string consent_rids, string ocrtags, string instcd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteRequestBody();
- inValue.Body.consent_rids = consent_rids;
- inValue.Body.ocrtags = ocrtags;
- inValue.Body.instcd = instcd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.updateCertifyCompleteResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).updateCertifyComplete(inValue);
- return retVal.Body.updateCertifyCompleteResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.updatePrintHistory(CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryRequest request) {
- return base.Channel.updatePrintHistory(request);
- }
-
- public void updatePrintHistory(string pid, string ocrtag, string instcd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryRequestBody();
- inValue.Body.pid = pid;
- inValue.Body.ocrtag = ocrtag;
- inValue.Body.instcd = instcd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.updatePrintHistoryResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).updatePrintHistory(inValue);
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.duplicateCertConsent(CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentRequest request) {
- return base.Channel.duplicateCertConsent(request);
- }
-
- public string duplicateCertConsent(string pid, string instcd, string formcd) {
- CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentRequestBody();
- inValue.Body.pid = pid;
- inValue.Body.instcd = instcd;
- inValue.Body.formcd = formcd;
- CLIP.eForm.Consent.UI.ConsentSvcRef.duplicateCertConsentResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).duplicateCertConsent(inValue);
- return retVal.Body.duplicateCertConsentResult;
- }
-
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsResponse CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap.getUserTableGrants(CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsRequest request) {
- return base.Channel.getUserTableGrants(request);
- }
-
- public string getUserTableGrants() {
- CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsRequest inValue = new CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsRequest();
- inValue.Body = new CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsRequestBody();
- CLIP.eForm.Consent.UI.ConsentSvcRef.getUserTableGrantsResponse retVal = ((CLIP.eForm.Consent.UI.ConsentSvcRef.ConsentSvcSoap)(this)).getUserTableGrants(inValue);
- return retVal.Body.getUserTableGrantsResult;
- }
- }
- }
|