Produced by Araxis Merge on 12/28/2017 10:56:41 AM Central Standard Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.
| # | Location | File | Last Modified |
|---|---|---|---|
| 1 | VIRP_CiF.zip\Registries VIRP Service | CrsServices.cs | Thu Dec 7 15:50:20 2017 UTC |
| 2 | VIRP_CiF.zip\Registries VIRP Service | CrsServices.cs | Tue Dec 19 20:50:40 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 3 | 6218 |
| Changed | 2 | 6 |
| Inserted | 0 | 0 |
| Removed | 0 | 0 |
| Whitespace | |
|---|---|
| Character case | Differences in character case are significant |
| Line endings | Differences in line endings (CR and LF characters) are ignored |
| CR/LF characters | Not shown in the comparison detail |
No regular expressions were active.
| 1 | using Syst em; | |
| 2 | using Syst em.Configu ration; | |
| 3 | using Syst em.Collect ions.Gener ic; | |
| 4 | using Syst em.Web; | |
| 5 | using Syst em.Web.Con figuration ; | |
| 6 | using Syst em.Linq; | |
| 7 | using Syst em.Web.Ser vices; | |
| 8 | using Syst em.Service Model; | |
| 9 | using Syst em.Service Model.Web; | |
| 10 | using Syst em.Service Model.Acti vation; | |
| 11 | using VIRP .CRS.BLL; | |
| 12 | using VIRP .CRS.BO; | |
| 13 | ||
| 14 | namespace VIRP_SERVI CE | |
| 15 | { | |
| 16 | [W ebService( Namespace = "http:// URL . DNS ")] | |
| 17 | [W ebServiceB inding(Con formsTo = WsiProfile s.BasicPro file1_1)] | |
| 18 | [W ebServiceB indingAttr ibute(Name = "CrsSer vices", Na mespace = "http:// URL . DNS ")] | |
| 19 | [S erviceCont ract(Name = "CrsServ ices", Nam espace = " http:// URL . DNS ")] | |
| 20 | [S ystem.Comp onentModel .ToolboxIt em(false)] | |
| 21 | [A spNetCompa tibilityRe quirements (Requireme ntsMode = AspNetComp atibilityR equirement sMode.Allo wed)] | |
| 22 | [S erviceBeha vior(Insta nceContext Mode = Ins tanceConte xtMode.Sin gle)] | |
| 23 | pu blic parti al class C rsServices : System. Web.Servic es.WebServ ice | |
| 24 | { | |
| 25 | #r egion BCCC R_BCR_ALL | |
| 26 | ||
| 27 | [W ebMethod] | |
| 28 | pu blic List< BCCCR_BCR_ ALL> BCCCR _BCR_ALL_G ET_ALL_BY_ SEARCH(str ing identi ty, int re gistryId, short sta3 n, string patientSea rch) | |
| 29 | { | |
| 30 | return V IRPManager .BCCCR_BCR _ALL_GET_A LL_BY_SEAR CH(identit y, registr yId, sta3n , patientS earch); | |
| 31 | } | |
| 32 | ||
| 33 | [O perationCo ntract] | |
| 34 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/BCCCR_ BCR_ALL_GE T_ALL_BY_S EARCH?iden tity={iden tity}®i stryId={re gistryId}& sta3n={sta 3n}&patien tSearch={p atientSear ch}")] | |
| 35 | pu blic List< BCCCR_BCR_ ALL> BCCCR _BCR_ALL_G ET_ALL_BY_ SEARCH_XML (string id entity, in t registry Id, short sta3n, str ing patien tSearch) | |
| 36 | { | |
| 37 | return t his.BCCCR_ BCR_ALL_GE T_ALL_BY_S EARCH(iden tity, regi stryId, st a3n, patie ntSearch); | |
| 38 | } | |
| 39 | ||
| 40 | [O perationCo ntract] | |
| 41 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/BCCC R_BCR_ALL_ GET_ALL_BY _SEARCH?id entity={id entity}&re gistryId={ registryId }&sta3n={s ta3n}&pati entSearch= {patientSe arch}")] | |
| 42 | pu blic List< BCCCR_BCR_ ALL> BCCCR _BCR_ALL_G ET_ALL_BY_ SEARCH_JSO N(string i dentity, i nt registr yId, short sta3n, st ring patie ntSearch) | |
| 43 | { | |
| 44 | return t his.BCCCR_ BCR_ALL_GE T_ALL_BY_S EARCH(iden tity, regi stryId, st a3n, patie ntSearch); | |
| 45 | } | |
| 46 | ||
| 47 | #e ndregion | |
| 48 | ||
| 49 | #r egion DATA _DICTIONAR Y | |
| 50 | ||
| 51 | [W ebMethod] | |
| 52 | pu blic List< DATA_DICTI ONARY> DAT A_DICTIONA RY_GET_ALL (string id entity, in t registry Id) | |
| 53 | { | |
| 54 | return V IRPManager .DATA_DICT IONARY_GET _ALL(ident ity, regis tryId); | |
| 55 | } | |
| 56 | ||
| 57 | [O perationCo ntract] | |
| 58 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/DATA_D ICTIONARY_ GET_ALL?id entity={id entity}&re gistryId={ registryId }")] | |
| 59 | pu blic List< DATA_DICTI ONARY> DAT A_DICTIONA RY_GET_ALL _XML(strin g identity , int regi stryId) | |
| 60 | { | |
| 61 | return t his.DATA_D ICTIONARY_ GET_ALL(id entity, re gistryId); | |
| 62 | } | |
| 63 | ||
| 64 | [O perationCo ntract] | |
| 65 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/DATA _DICTIONAR Y_GET_ALL? identity={ identity}& registryId ={registry Id}")] | |
| 66 | pu blic List< DATA_DICTI ONARY> DAT A_DICTIONA RY_GET_ALL _JSON(stri ng identit y, int reg istryId) | |
| 67 | { | |
| 68 | return t his.DATA_D ICTIONARY_ GET_ALL(id entity, re gistryId); | |
| 69 | } | |
| 70 | ||
| 71 | #e ndregion | |
| 72 | ||
| 73 | #r egion DB_L OG | |
| 74 | ||
| 75 | [W ebMethod] | |
| 76 | pu blic int D B_LOG_SAVE (string id entity, in t registry Id, DB_LOG objSave) | |
| 77 | { | |
| 78 | return V IRPManager .DB_LOG_SA VE(identit y, registr yId, objSa ve); | |
| 79 | } | |
| 80 | ||
| 81 | [O perationCo ntract] | |
| 82 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/DB_LOG _SAVE?iden tity={iden tity}®i stryId={re gistryId}" )] | |
| 83 | pu blic int D B_LOG_SAVE _XML(strin g identity , int regi stryId, DB _LOG objSa ve) | |
| 84 | { | |
| 85 | return t his.DB_LOG _SAVE(iden tity, regi stryId, ob jSave); | |
| 86 | } | |
| 87 | ||
| 88 | [O perationCo ntract] | |
| 89 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/DB_L OG_SAVE?id entity={id entity}&re gistryId={ registryId }")] | |
| 90 | pu blic int D B_LOG_SAVE _JSON(stri ng identit y, int reg istryId, D B_LOG objS ave) | |
| 91 | { | |
| 92 | return t his.DB_LOG _SAVE(iden tity, regi stryId, ob jSave); | |
| 93 | } | |
| 94 | ||
| 95 | #e ndregion | |
| 96 | ||
| 97 | #r egion ETL_ ExtractBat ch_Log | |
| 98 | ||
| 99 | [W ebMethod] | |
| 100 | pu blic List< ETL_Extrac tBatch_Log > ETL_Extr actBatch_L og_GET_ALL _BY_REGIST RY(string identity, int regist ryId) | |
| 101 | { | |
| 102 | return V IRPManager .ETL_Extra ctBatch_Lo g_GET_ALL_ BY_REGISTR Y(identity , registry Id); | |
| 103 | } | |
| 104 | ||
| 105 | [O perationCo ntract] | |
| 106 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/ETL_Ex tractBatch _Log_GET_A LL_BY_REGI STRY?ident ity={ident ity}®is tryId={reg istryId}") ] | |
| 107 | pu blic List< ETL_Extrac tBatch_Log > ETL_Extr actBatch_L og_GET_ALL _BY_REGIST RY_XML(str ing identi ty, int re gistryId) | |
| 108 | { | |
| 109 | return t his.ETL_Ex tractBatch _Log_GET_A LL_BY_REGI STRY(ident ity, regis tryId); | |
| 110 | } | |
| 111 | ||
| 112 | [O perationCo ntract] | |
| 113 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/ETL_ ExtractBat ch_Log_GET _ALL_BY_RE GISTRY?ide ntity={ide ntity}® istryId={r egistryId} ")] | |
| 114 | pu blic List< ETL_Extrac tBatch_Log > ETL_Extr actBatch_L og_GET_ALL _BY_REGIST RY_JSON(st ring ident ity, int r egistryId) | |
| 115 | { | |
| 116 | return t his.ETL_Ex tractBatch _Log_GET_A LL_BY_REGI STRY(ident ity, regis tryId); | |
| 117 | } | |
| 118 | ||
| 119 | #e ndregion | |
| 120 | ||
| 121 | #r egion PATI ENT | |
| 122 | ||
| 123 | [W ebMethod] | |
| 124 | pu blic PATIE NT PATIENT _GET(strin g identity , int regi stryId, in t id) | |
| 125 | { | |
| 126 | return V IRPManager .PATIENT_G ET(identit y, registr yId, id); | |
| 127 | } | |
| 128 | ||
| 129 | [O perationCo ntract] | |
| 130 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/PATIEN T_GET?iden tity={iden tity}®i stryId={re gistryId}& id={id}")] | |
| 131 | pu blic PATIE NT PATIENT _GET_XML(s tring iden tity, int registryId , int id) | |
| 132 | { | |
| 133 | return t his.PATIEN T_GET(iden tity, regi stryId, id ); | |
| 134 | } | |
| 135 | ||
| 136 | [O perationCo ntract] | |
| 137 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/PATI ENT_GET?id entity={id entity}&re gistryId={ registryId }&id={id}" )] | |
| 138 | pu blic PATIE NT PATIENT _GET_JSON( string ide ntity, int registryI d, int id) | |
| 139 | { | |
| 140 | return t his.PATIEN T_GET(iden tity, regi stryId, id ); | |
| 141 | } | |
| 142 | ||
| 143 | [W ebMethod] | |
| 144 | pu blic PATIE NT PATIENT _GET_COMPL ETE(string identity, int regis tryId, int patientId ) | |
| 145 | { | |
| 146 | return V IRPManager .PATIENT_G ET_COMPLET E(identity , registry Id, patien tId); | |
| 147 | } | |
| 148 | ||
| 149 | [O perationCo ntract] | |
| 150 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/PATIEN T_GET_COMP LETE?ident ity={ident ity}®is tryId={reg istryId}&p atientId={ patientId} ")] | |
| 151 | pu blic PATIE NT PATIENT _GET_COMPL ETE_XML(st ring ident ity, int r egistryId, int patie ntId) | |
| 152 | { | |
| 153 | return t his.PATIEN T_GET_COMP LETE(ident ity, regis tryId, pat ientId); | |
| 154 | } | |
| 155 | ||
| 156 | [O perationCo ntract] | |
| 157 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/PATI ENT_GET_CO MPLETE?ide ntity={ide ntity}® istryId={r egistryId} &patientId ={patientI d}")] | |
| 158 | pu blic PATIE NT PATIENT _GET_COMPL ETE_JSON(s tring iden tity, int registryId , int pati entId) | |
| 159 | { | |
| 160 | return t his.PATIEN T_GET_COMP LETE(ident ity, regis tryId, pat ientId); | |
| 161 | } | |
| 162 | ||
| 163 | [W ebMethod] | |
| 164 | pu blic List< PATIENT> P ATIENT_GET _ALL_BY_RE GISTRY(str ing identi ty, int re gistryId) | |
| 165 | { | |
| 166 | return V IRPManager .PATIENT_G ET_ALL_BY_ REGISTRY(i dentity, r egistryId) ; | |
| 167 | } | |
| 168 | ||
| 169 | [O perationCo ntract] | |
| 170 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/PATIEN T_GET_ALL_ BY_REGISTR Y?identity ={identity }®istry Id={regist ryId}")] | |
| 171 | pu blic List< PATIENT> P ATIENT_GET _ALL_BY_RE GISTRY_XML (string id entity, in t registry Id) | |
| 172 | { | |
| 173 | return t his.PATIEN T_GET_ALL_ BY_REGISTR Y(identity , registry Id); | |
| 174 | } | |
| 175 | ||
| 176 | [O perationCo ntract] | |
| 177 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/PATI ENT_GET_AL L_BY_REGIS TRY?identi ty={identi ty}®ist ryId={regi stryId}")] | |
| 178 | pu blic List< PATIENT> P ATIENT_GET _ALL_BY_RE GISTRY_JSO N(string i dentity, i nt registr yId) | |
| 179 | { | |
| 180 | return t his.PATIEN T_GET_ALL_ BY_REGISTR Y(identity , registry Id); | |
| 181 | } | |
| 182 | ||
| 183 | [W ebMethod] | |
| 184 | pu blic List< PATIENT> P ATIENT_GET _ALL_BY_NA ME(string identity, int regist ryId, stri ng lastNam e, string firstName) | |
| 185 | { | |
| 186 | return V IRPManager .PATIENT_G ET_ALL_BY_ NAME(ident ity, regis tryId, las tName, fir stName); | |
| 187 | } | |
| 188 | ||
| 189 | [O perationCo ntract] | |
| 190 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/PATIEN T_GET_ALL_ BY_NAME?id entity={id entity}&re gistryId={ registryId }&lastName ={lastName }&firstNam e={firstNa me}")] | |
| 191 | pu blic List< PATIENT> P ATIENT_GET _ALL_BY_NA ME_XML(str ing identi ty, int re gistryId, string las tName, str ing firstN ame) | |
| 192 | { | |
| 193 | return t his.PATIEN T_GET_ALL_ BY_NAME(id entity, re gistryId, lastName, firstName) ; | |
| 194 | } | |
| 195 | ||
| 196 | [O perationCo ntract] | |
| 197 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/PATI ENT_GET_AL L_BY_NAME? identity={ identity}& registryId ={registry Id}&lastNa me={lastNa me}&firstN ame={first Name}")] | |
| 198 | pu blic List< PATIENT> P ATIENT_GET _ALL_BY_NA ME_JSON(st ring ident ity, int r egistryId, string la stName, st ring first Name) | |
| 199 | { | |
| 200 | return t his.PATIEN T_GET_ALL_ BY_NAME(id entity, re gistryId, lastName, firstName) ; | |
| 201 | } | |
| 202 | ||
| 203 | #e ndregion | |
| 204 | ||
| 205 | #r egion PATI ENT_UDFs | |
| 206 | ||
| 207 | [W ebMethod] | |
| 208 | pu blic int P ATIENT_UDF s_SAVE(str ing identi ty, int re gistryId, PATIENT_UD Fs objSave ) | |
| 209 | { | |
| 210 | return V IRPManager .PATIENT_U DFs_SAVE(i dentity, r egistryId, objSave); | |
| 211 | } | |
| 212 | ||
| 213 | [O perationCo ntract] | |
| 214 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/PATIEN T_UDFs_SAV E?identity ={identity }®istry Id={regist ryId}")] | |
| 215 | pu blic int P ATIENT_UDF s_SAVE_XML (string id entity, in t registry Id, PATIEN T_UDFs obj Save) | |
| 216 | { | |
| 217 | return t his.PATIEN T_UDFs_SAV E(identity , registry Id, objSav e); | |
| 218 | } | |
| 219 | ||
| 220 | [O perationCo ntract] | |
| 221 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/PATI ENT_UDFs_S AVE?identi ty={identi ty}®ist ryId={regi stryId}")] | |
| 222 | pu blic int P ATIENT_UDF s_SAVE_JSO N(string i dentity, i nt registr yId, PATIE NT_UDFs ob jSave) | |
| 223 | { | |
| 224 | return t his.PATIEN T_UDFs_SAV E(identity , registry Id, objSav e); | |
| 225 | } | |
| 226 | ||
| 227 | [W ebMethod] | |
| 228 | pu blic PATIE NT_UDFs PA TIENT_UDFs _GET_BY_PA TIENT_UDF( string ide ntity, int registryI d, int pat ientId, in t udfId) | |
| 229 | { | |
| 230 | return V IRPManager .PATIENT_U DFs_GET_BY _PATIENT_U DF(identit y, registr yId, patie ntId, udfI d); | |
| 231 | } | |
| 232 | ||
| 233 | [O perationCo ntract] | |
| 234 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/PATIEN T_UDFs_GET _BY_PATIEN T_UDF?iden tity={iden tity}®i stryId={re gistryId}& patientId= {patientId }&udfId={u dfId}")] | |
| 235 | pu blic PATIE NT_UDFs PA TIENT_UDFs _GET_BY_PA TIENT_UDF_ XML(string identity, int regis tryId, int patientId , int udfI d) | |
| 236 | { | |
| 237 | return t his.PATIEN T_UDFs_GET _BY_PATIEN T_UDF(iden tity, regi stryId, pa tientId, u dfId); | |
| 238 | } | |
| 239 | ||
| 240 | [O perationCo ntract] | |
| 241 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/PATI ENT_UDFs_G ET_BY_PATI ENT_UDF?id entity={id entity}&re gistryId={ registryId }&patientI d={patient Id}&udfId= {udfId}")] | |
| 242 | pu blic PATIE NT_UDFs PA TIENT_UDFs _GET_BY_PA TIENT_UDF_ JSON(strin g identity , int regi stryId, in t patientI d, int udf Id) | |
| 243 | { | |
| 244 | return t his.PATIEN T_UDFs_GET _BY_PATIEN T_UDF(iden tity, regi stryId, pa tientId, u dfId); | |
| 245 | } | |
| 246 | ||
| 247 | #e ndregion | |
| 248 | ||
| 249 | #r egion REFE RRAL | |
| 250 | ||
| 251 | [W ebMethod] | |
| 252 | pu blic REFER RAL REFERR AL_GET(str ing identi ty, int re gistryId, int id) | |
| 253 | { | |
| 254 | return V IRPManager .REFERRAL_ GET(identi ty, regist ryId, id); | |
| 255 | } | |
| 256 | ||
| 257 | [W ebMethod] | |
| 258 | pu blic int R EFERRAL_SA VE(string identity, int regist ryId, REFE RRAL objSa ve) | |
| 259 | { | |
| 260 | return V IRPManager .REFERRAL_ SAVE(ident ity, regis tryId, obj Save); | |
| 261 | } | |
| 262 | ||
| 263 | [W ebMethod] | |
| 264 | pu blic Boole an REFERRA L_DELETE(s tring iden tity, int registryId , int id) | |
| 265 | { | |
| 266 | return V IRPManager .REFERRAL_ DELETE(ide ntity, reg istryId, i d); | |
| 267 | } | |
| 268 | ||
| 269 | [O perationCo ntract] | |
| 270 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REFERR AL_GET?ide ntity={ide ntity}® istryId={r egistryId} &id={id}") ] | |
| 271 | pu blic REFER RAL REFERR AL_GET_XML (string id entity, in t registry Id, int id ) | |
| 272 | { | |
| 273 | return t his.REFERR AL_GET(ide ntity, reg istryId, i d); | |
| 274 | } | |
| 275 | ||
| 276 | [O perationCo ntract] | |
| 277 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REFERR AL_SAVE?id entity={id entity}&re gistryId={ registryId }")] | |
| 278 | pu blic int R EFERRAL_SA VE_XML(str ing identi ty, int re gistryId, REFERRAL o bjSave) | |
| 279 | { | |
| 280 | return t his.REFERR AL_SAVE(id entity, re gistryId, objSave); | |
| 281 | } | |
| 282 | ||
| 283 | [O perationCo ntract] | |
| 284 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REFERR AL_DELETE? identity={ identity}& registryId ={registry Id}&id={id }")] | |
| 285 | pu blic Boole an REFERRA L_DELETE_X ML(string identity, int regist ryId, int id) | |
| 286 | { | |
| 287 | return t his.REFERR AL_DELETE( identity, registryId , id); | |
| 288 | } | |
| 289 | ||
| 290 | [O perationCo ntract] | |
| 291 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REFE RRAL_GET?i dentity={i dentity}&r egistryId= {registryI d}&id={id} ")] | |
| 292 | pu blic REFER RAL REFERR AL_GET_JSO N(string i dentity, i nt registr yId, int i d) | |
| 293 | { | |
| 294 | return t his.REFERR AL_GET(ide ntity, reg istryId, i d); | |
| 295 | } | |
| 296 | ||
| 297 | [O perationCo ntract] | |
| 298 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REFE RRAL_SAVE? identity={ identity}& registryId ={registry Id}")] | |
| 299 | pu blic int R EFERRAL_SA VE_JSON(st ring ident ity, int r egistryId, REFERRAL objSave) | |
| 300 | { | |
| 301 | return t his.REFERR AL_SAVE(id entity, re gistryId, objSave); | |
| 302 | } | |
| 303 | ||
| 304 | [O perationCo ntract] | |
| 305 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REFE RRAL_DELET E?identity ={identity }®istry Id={regist ryId}&id={ id}")] | |
| 306 | pu blic Boole an REFERRA L_DELETE_J SON(string identity, int regis tryId, int id) | |
| 307 | { | |
| 308 | return t his.REFERR AL_DELETE( identity, registryId , id); | |
| 309 | } | |
| 310 | ||
| 311 | [W ebMethod] | |
| 312 | pu blic REFER RAL REFERR AL_GET_COM PLETE(stri ng identit y, int reg istryId, i nt referra lId) | |
| 313 | { | |
| 314 | return V IRPManager .REFERRAL_ GET_COMPLE TE(identit y, registr yId, refer ralId); | |
| 315 | } | |
| 316 | ||
| 317 | [O perationCo ntract] | |
| 318 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REFERR AL_GET_COM PLETE?iden tity={iden tity}®i stryId={re gistryId}& referralId ={referral Id}")] | |
| 319 | pu blic REFER RAL REFERR AL_GET_COM PLETE_XML( string ide ntity, int registryI d, int ref erralId) | |
| 320 | { | |
| 321 | return t his.REFERR AL_GET_COM PLETE(iden tity, regi stryId, re ferralId); | |
| 322 | } | |
| 323 | ||
| 324 | [O perationCo ntract] | |
| 325 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REFE RRAL_GET_C OMPLETE?id entity={id entity}&re gistryId={ registryId }&referral Id={referr alId}")] | |
| 326 | pu blic REFER RAL REFERR AL_GET_COM PLETE_JSON (string id entity, in t registry Id, int re ferralId) | |
| 327 | { | |
| 328 | return t his.REFERR AL_GET_COM PLETE(iden tity, regi stryId, re ferralId); | |
| 329 | } | |
| 330 | ||
| 331 | [W ebMethod] | |
| 332 | pu blic List< REFERRAL> REFERRAL_G ET_ALL_BY_ REGISTRY_S TATUS(stri ng identit y, int reg istryId, i nt statusI d) | |
| 333 | { | |
| 334 | return V IRPManager .REFERRAL_ GET_ALL_BY _REGISTRY_ STATUS(ide ntity, reg istryId, s tatusId); | |
| 335 | } | |
| 336 | ||
| 337 | [O perationCo ntract] | |
| 338 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REFERR AL_GET_ALL _BY_REGIST RY_STATUS? identity={ identity}& registryId ={registry Id}&status Id={status Id}")] | |
| 339 | pu blic List< REFERRAL> REFERRAL_G ET_ALL_BY_ REGISTRY_S TATUS_XML( string ide ntity, int registryI d, int sta tusId) | |
| 340 | { | |
| 341 | return t his.REFERR AL_GET_ALL _BY_REGIST RY_STATUS( identity, registryId , statusId ); | |
| 342 | } | |
| 343 | ||
| 344 | [O perationCo ntract] | |
| 345 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REFE RRAL_GET_A LL_BY_REGI STRY_STATU S?identity ={identity }®istry Id={regist ryId}&stat usId={stat usId}")] | |
| 346 | pu blic List< REFERRAL> REFERRAL_G ET_ALL_BY_ REGISTRY_S TATUS_JSON (string id entity, in t registry Id, int st atusId) | |
| 347 | { | |
| 348 | return t his.REFERR AL_GET_ALL _BY_REGIST RY_STATUS( identity, registryId , statusId ); | |
| 349 | } | |
| 350 | ||
| 351 | [W ebMethod(B ufferRespo nse = fals e, CacheDu ration = 6 0)] | |
| 352 | pu blic List< REFERRALco mmon> REFE RRAL_GET_C OMMON_BY_R EGISTRY(st ring ident ity, int r egistryId) | |
| 353 | { | |
| 354 | return V IRPManager .REFERRAL_ GET_COMMON _BY_REGIST RY(identit y, registr yId); | |
| 355 | } | |
| 356 | ||
| 357 | [O perationCo ntract] | |
| 358 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REFERR AL_GET_COM MON_BY_REG ISTRY?iden tity={iden tity}®i stryId={re gistryId}" )] | |
| 359 | pu blic List< REFERRALco mmon> REFE RRAL_GET_C OMMON_BY_R EGISTRY_XM L(string i dentity, i nt registr yId) | |
| 360 | { | |
| 361 | return t his.REFERR AL_GET_COM MON_BY_REG ISTRY(iden tity, regi stryId); | |
| 362 | } | |
| 363 | ||
| 364 | [O perationCo ntract] | |
| 365 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REFE RRAL_GET_C OMMON_BY_R EGISTRY?id entity={id entity}&re gistryId={ registryId }")] | |
| 366 | pu blic List< REFERRALco mmon> REFE RRAL_GET_C OMMON_BY_R EGISTRY_JS ON(string identity, int regist ryId) | |
| 367 | { | |
| 368 | return t his.REFERR AL_GET_COM MON_BY_REG ISTRY(iden tity, regi stryId); | |
| 369 | } | |
| 370 | ||
| 371 | [W ebMethod(B ufferRespo nse = fals e, CacheDu ration = 6 0)] | |
| 372 | pu blic REFER RALcommonG roup REFER RAL_GET_CO MMON_BY_RE GISTRY_FIL TER(string identity, int regis tryId, int patientId , string s earchColum n, string searchText , string s ortExpress ion, int s tartRow, i nt maxRows , bool IsP atientList ) | |
| 373 | { | |
| 374 | return V IRPManager .REFERRAL_ GET_COMMON _BY_REGIST RY(identit y, registr yId, patie ntId, sear chColumn, searchText , sortExpr ession, st artRow, ma xRows, IsP atientList ); | |
| 375 | } | |
| 376 | ||
| 377 | [O perationCo ntract] | |
| 378 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REFERR AL_GET_COM MON_BY_REG ISTRY_FILT ER?identit y={identit y}®istr yId={regis tryId}&pat ientId={pa tientId}&s earchColum n={searchC olumn}&sea rchText={s earchText} &sortExpre ssion={sor tExpressio n}&startRo w={startRo w}&maxRows ={maxRows} &isPatient List={isPa tientList} ")] | |
| 379 | pu blic REFER RALcommonG roup REFER RAL_GET_CO MMON_BY_RE GISTRY_FIL TER_XML(st ring ident ity, int r egistryId, int patie ntId, stri ng searchC olumn, str ing search Text, stri ng sortExp ression, i nt startRo w, int max Rows, bool isPatient List) | |
| 380 | { | |
| 381 | return t his.REFERR AL_GET_COM MON_BY_REG ISTRY_FILT ER(identit y, registr yId, patie ntId, sear chColumn, searchText , sortExpr ession, st artRow, ma xRows, isP atientList ); | |
| 382 | } | |
| 383 | ||
| 384 | [O perationCo ntract] | |
| 385 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REFE RRAL_GET_C OMMON_BY_R EGISTRY_FI LTER?ident ity={ident ity}®is tryId={reg istryId}&p atientId={ patientId} &searchCol umn={searc hColumn}&s earchText= {searchTex t}&sortExp ression={s ortExpress ion}&start Row={start Row}&maxRo ws={maxRow s}&isPatie ntList={is PatientLis t}")] | |
| 386 | pu blic REFER RALcommonG roup REFER RAL_GET_CO MMON_BY_RE GISTRY_FIL TER_JSON(s tring iden tity, int registryId , int pati entId, str ing search Column, st ring searc hText, str ing sortEx pression, int startR ow, int ma xRows, boo l isPatien tList) | |
| 387 | { | |
| 388 | return t his.REFERR AL_GET_COM MON_BY_REG ISTRY_FILT ER(identit y, registr yId, patie ntId, sear chColumn, searchText , sortExpr ession, st artRow, ma xRows, isP atientList ); | |
| 389 | } | |
| 390 | ||
| 391 | [W ebMethod] | |
| 392 | pu blic List< REFERRALco mmon> REFE RRAL_GET_C OMMON_BY_P ATIENT(str ing identi ty, int re gistryId, int patien tId) | |
| 393 | { | |
| 394 | return V IRPManager .REFERRAL_ GET_COMMON _BY_PATIEN T(identity , registry Id, patien tId); | |
| 395 | } | |
| 396 | ||
| 397 | [O perationCo ntract] | |
| 398 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REFERR AL_GET_COM MON_BY_PAT IENT?ident ity={ident ity}®is tryId={reg istryId}&p atientId={ patientId} ")] | |
| 399 | pu blic List< REFERRALco mmon> REFE RRAL_GET_C OMMON_BY_P ATIENT_XML (string id entity, in t registry Id, int pa tientId) | |
| 400 | { | |
| 401 | return t his.REFERR AL_GET_COM MON_BY_PAT IENT(ident ity, regis tryId, pat ientId); | |
| 402 | } | |
| 403 | ||
| 404 | [O perationCo ntract] | |
| 405 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REFE RRAL_GET_C OMMON_BY_P ATIENT?ide ntity={ide ntity}® istryId={r egistryId} &patientId ={patientI d}")] | |
| 406 | pu blic List< REFERRALco mmon> REFE RRAL_GET_C OMMON_BY_P ATIENT_JSO N(string i dentity, i nt registr yId, int p atientId) | |
| 407 | { | |
| 408 | return t his.REFERR AL_GET_COM MON_BY_PAT IENT(ident ity, regis tryId, pat ientId); | |
| 409 | } | |
| 410 | ||
| 411 | [W ebMethod] | |
| 412 | pu blic List< REFERRALco mmon> REFE RRAL_GET_C OMMON_BY_P ROVIDER(st ring ident ity, int r egistryId, int provi derId) | |
| 413 | { | |
| 414 | return V IRPManager .REFERRAL_ GET_COMMON _BY_PROVID ER(identit y, registr yId, provi derId); | |
| 415 | } | |
| 416 | ||
| 417 | [O perationCo ntract] | |
| 418 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REFERR AL_GET_COM MON_BY_PRO VIDER?iden tity={iden tity}®i stryId={re gistryId}& providerId ={provider Id}")] | |
| 419 | pu blic List< REFERRALco mmon> REFE RRAL_GET_C OMMON_BY_P ROVIDER_XM L(string i dentity, i nt registr yId, int p roviderId) | |
| 420 | { | |
| 421 | return t his.REFERR AL_GET_COM MON_BY_PRO VIDER(iden tity, regi stryId, pr oviderId); | |
| 422 | } | |
| 423 | ||
| 424 | [O perationCo ntract] | |
| 425 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REFE RRAL_GET_C OMMON_BY_P ROVIDER?id entity={id entity}&re gistryId={ registryId }&provider Id={provid erId}")] | |
| 426 | pu blic List< REFERRALco mmon> REFE RRAL_GET_C OMMON_BY_P ROVIDER_JS ON(string identity, int regist ryId, int providerId ) | |
| 427 | { | |
| 428 | return t his.REFERR AL_GET_COM MON_BY_PRO VIDER(iden tity, regi stryId, pr oviderId); | |
| 429 | } | |
| 430 | ||
| 431 | [W ebMethod] | |
| 432 | pu blic bool REFERRAL_P ATIENT_EXI STS(string identity, int regis tryId, int patientId ) | |
| 433 | { | |
| 434 | return V IRPManager .REFERRAL_ PATIENT_EX ISTS(ident ity, regis tryId, pat ientId); | |
| 435 | } | |
| 436 | ||
| 437 | [O perationCo ntract] | |
| 438 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REFERR AL_PATIENT _EXISTS?id entity={id entity}&re gistryId={ registryId }&patientI d={patient Id}")] | |
| 439 | pu blic bool REFERRAL_P ATIENT_EXI STS_XML(st ring ident ity, int r egistryId, int patie ntId) | |
| 440 | { | |
| 441 | return t his.REFERR AL_PATIENT _EXISTS(id entity, re gistryId, patientId) ; | |
| 442 | } | |
| 443 | ||
| 444 | [O perationCo ntract] | |
| 445 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REFE RRAL_PATIE NT_EXISTS? identity={ identity}& registryId ={registry Id}&patien tId={patie ntId}")] | |
| 446 | pu blic bool REFERRAL_P ATIENT_EXI STS_JSON(s tring iden tity, int registryId , int pati entId) | |
| 447 | { | |
| 448 | return t his.REFERR AL_PATIENT _EXISTS(id entity, re gistryId, patientId) ; | |
| 449 | } | |
| 450 | ||
| 451 | [W ebMethod] | |
| 452 | pu blic int R EFERRAL_SA VE_MANUAL( string ide ntity, int registryI d, int pat ientId, in t provider Id) | |
| 453 | { | |
| 454 | return V IRPManager .REFERRAL_ SAVE_MANUA L(identity , registry Id, patien tId, provi derId); | |
| 455 | } | |
| 456 | ||
| 457 | [O perationCo ntract] | |
| 458 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REFERR AL_SAVE_MA NUAL?ident ity={ident ity}®is tryId={reg istryId}&p atientId={ patientId} &providerI d={provide rId}")] | |
| 459 | pu blic int R EFERRAL_SA VE_MANUAL_ XML(string identity, int regis tryId, int patientId , int prov iderId) | |
| 460 | { | |
| 461 | return t his.REFERR AL_SAVE_MA NUAL(ident ity, regis tryId, pat ientId, pr oviderId); | |
| 462 | } | |
| 463 | ||
| 464 | [O perationCo ntract] | |
| 465 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REFE RRAL_SAVE_ MANUAL?ide ntity={ide ntity}® istryId={r egistryId} &patientId ={patientI d}&provide rId={provi derId}")] | |
| 466 | pu blic int R EFERRAL_SA VE_MANUAL_ JSON(strin g identity , int regi stryId, in t patientI d, int pro viderId) | |
| 467 | { | |
| 468 | return t his.REFERR AL_SAVE_MA NUAL(ident ity, regis tryId, pat ientId, pr oviderId); | |
| 469 | } | |
| 470 | ||
| 471 | [W ebMethod] | |
| 472 | pu blic bool REFERRAL_U PDATE_STAT US(string identity, int regist ryId, int referralId , int stat usId) | |
| 473 | { | |
| 474 | return V IRPManager .REFERRAL_ UPDATE_STA TUS(identi ty, regist ryId, refe rralId, st atusId); | |
| 475 | } | |
| 476 | ||
| 477 | [O perationCo ntract] | |
| 478 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REFERR AL_UPDATE_ STATUS?ide ntity={ide ntity}® istryId={r egistryId} &referralI d={referra lId}&statu sId={statu sId}")] | |
| 479 | pu blic bool REFERRAL_U PDATE_STAT US_XML(str ing identi ty, int re gistryId, int referr alId, int statusId) | |
| 480 | { | |
| 481 | return t his.REFERR AL_UPDATE_ STATUS(ide ntity, reg istryId, r eferralId, statusId) ; | |
| 482 | } | |
| 483 | ||
| 484 | [O perationCo ntract] | |
| 485 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REFE RRAL_UPDAT E_STATUS?i dentity={i dentity}&r egistryId= {registryI d}&referra lId={refer ralId}&sta tusId={sta tusId}")] | |
| 486 | pu blic bool REFERRAL_S TATUS_JSON (string id entity, in t registry Id, int re ferralId, int status Id) | |
| 487 | { | |
| 488 | return t his.REFERR AL_UPDATE_ STATUS(ide ntity, reg istryId, r eferralId, statusId) ; | |
| 489 | } | |
| 490 | ||
| 491 | #e ndregion | |
| 492 | ||
| 493 | #r egion REGI STRY_COHOR T_DATA | |
| 494 | ||
| 495 | [W ebMethod] | |
| 496 | pu blic List< REGISTRY_C OHORT_DATA > REGISTRY _COHORT_DA TA_GET_ALL _BY_REGIST RY(string identity, int regist ryId) | |
| 497 | { | |
| 498 | return V IRPManager .REGISTRY_ COHORT_DAT A_GET_ALL_ BY_REGISTR Y(identity , registry Id); | |
| 499 | } | |
| 500 | ||
| 501 | [O perationCo ntract] | |
| 502 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REGIST RY_COHORT_ DATA_GET_A LL_BY_REGI STRY?ident ity={ident ity}®is tryId={reg istryId}") ] | |
| 503 | pu blic List< REGISTRY_C OHORT_DATA > REGISTRY _COHORT_DA TA_GET_ALL _BY_REGIST RY_XML(str ing identi ty, int re gistryId) | |
| 504 | { | |
| 505 | return t his.REGIST RY_COHORT_ DATA_GET_A LL_BY_REGI STRY(ident ity, regis tryId); | |
| 506 | } | |
| 507 | ||
| 508 | [O perationCo ntract] | |
| 509 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REGI STRY_COHOR T_DATA_GET _ALL_BY_RE GISTRY?ide ntity={ide ntity}® istryId={r egistryId} ")] | |
| 510 | pu blic List< REGISTRY_C OHORT_DATA > REGISTRY _COHORT_DA TA_GET_ALL _BY_REGIST RY_JSON(st ring ident ity, int r egistryId) | |
| 511 | { | |
| 512 | return t his.REGIST RY_COHORT_ DATA_GET_A LL_BY_REGI STRY(ident ity, regis tryId); | |
| 513 | } | |
| 514 | ||
| 515 | [W ebMethod] | |
| 516 | pu blic List< REGISTRY_C OHORT_DATA > REGISTRY _COHORT_DA TA_GET_ALL _SELECTED_ BY_REGISTR Y(string i dentity, i nt registr yId) | |
| 517 | { | |
| 518 | return V IRPManager .REGISTRY_ COHORT_DAT A_GET_ALL_ SELECTED_B Y_REGISTRY (identity, registryI d); | |
| 519 | } | |
| 520 | ||
| 521 | [O perationCo ntract] | |
| 522 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REGIST RY_COHORT_ DATA_GET_A LL_SELECTE D_BY_REGIS TRY?identi ty={identi ty}®ist ryId={regi stryId}")] | |
| 523 | pu blic List< REGISTRY_C OHORT_DATA > REGISTRY _COHORT_DA TA_GET_ALL _SELECTED_ BY_REGISTR Y_XML(stri ng identit y, int reg istryId) | |
| 524 | { | |
| 525 | return t his.REGIST RY_COHORT_ DATA_GET_A LL_SELECTE D_BY_REGIS TRY(identi ty, regist ryId); | |
| 526 | } | |
| 527 | ||
| 528 | [O perationCo ntract] | |
| 529 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REGI STRY_COHOR T_DATA_GET _ALL_SELEC TED_BY_REG ISTRY?iden tity={iden tity}®i stryId={re gistryId}" )] | |
| 530 | pu blic List< REGISTRY_C OHORT_DATA > REGISTRY _COHORT_DA TA_GET_ALL _SELECTED_ BY_REGISTR Y_JSON(str ing identi ty, int re gistryId) | |
| 531 | { | |
| 532 | return t his.REGIST RY_COHORT_ DATA_GET_A LL_SELECTE D_BY_REGIS TRY(identi ty, regist ryId); | |
| 533 | } | |
| 534 | ||
| 535 | [W ebMethod] | |
| 536 | pu blic bool REGISTRY_C OHORT_DATA _SAVE_LIST (string id entity, in t registry Id, List<R EGISTRY_CO HORT_DATA> cohorts) | |
| 537 | { | |
| 538 | return V IRPManager .REGISTRY_ COHORT_DAT A_SAVE_LIS T(identity , registry Id, cohort s); | |
| 539 | } | |
| 540 | ||
| 541 | [O perationCo ntract] | |
| 542 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REGIST RY_COHORT_ DATA_SAVE_ LIST?ident ity={ident ity}®is tryId={reg istryId}&c ohorts={co horts}")] | |
| 543 | pu blic bool REGISTRY_C OHORT_DATA _SAVE_LIST _XML(strin g identity , int regi stryId, Li st<REGISTR Y_COHORT_D ATA> cohor ts) | |
| 544 | { | |
| 545 | return t his.REGIST RY_COHORT_ DATA_SAVE_ LIST(ident ity, regis tryId, coh orts); | |
| 546 | } | |
| 547 | ||
| 548 | [O perationCo ntract] | |
| 549 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REGI STRY_COHOR T_DATA_SAV E_LIST?ide ntity={ide ntity}® istryId={r egistryId} &cohorts={ cohorts}") ] | |
| 550 | pu blic bool REGISTRY_C OHORT_DATA _SAVE_LIST _JSON(stri ng identit y, int reg istryId, L ist<REGIST RY_COHORT_ DATA> coho rts) | |
| 551 | { | |
| 552 | return t his.REGIST RY_COHORT_ DATA_SAVE_ LIST(ident ity, regis tryId, coh orts); | |
| 553 | } | |
| 554 | ||
| 555 | [W ebMethod] | |
| 556 | pu blic int R EGISTRY_CO HORT_DATA_ GET_PREVIE W_COUNT(st ring ident ity, int r egistryId, List<REGI STRY_COHOR T_DATA> co horts) | |
| 557 | { | |
| 558 | return V IRPManager .REGISTRY_ COHORT_DAT A_GET_PREV IEW_COUNT( identity, registryId , cohorts) ; | |
| 559 | } | |
| 560 | ||
| 561 | [O perationCo ntract] | |
| 562 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REGI STRY_COHOR T_DATA_GET _PREVIEW_C OUNT?ident ity={ident ity}®is tryId={reg istryId}&c ohorts={co horts}")] | |
| 563 | pu blic int R EGISTRY_CO HORT_DATA_ GET_PREVIE W_COUNT_JS ON(string identity, int regist ryId, List <REGISTRY_ COHORT_DAT A> cohorts ) | |
| 564 | { | |
| 565 | return t his.REGIST RY_COHORT_ DATA_GET_P REVIEW_COU NT(identit y, registr yId, cohor ts); | |
| 566 | } | |
| 567 | ||
| 568 | [O perationCo ntract] | |
| 569 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REGIST RY_COHORT_ DATA_GET_P REVIEW_COU NT?identit y={identit y}®istr yId={regis tryId}&coh orts={coho rts}")] | |
| 570 | pu blic int R EGISTRY_CO HORT_DATA_ GET_PREVIE W_COUNT_XM L(string i dentity, i nt registr yId, List< REGISTRY_C OHORT_DATA > cohorts) | |
| 571 | { | |
| 572 | return t his.REGIST RY_COHORT_ DATA_GET_P REVIEW_COU NT(identit y, registr yId, cohor ts); | |
| 573 | } | |
| 574 | ||
| 575 | #e ndregion | |
| 576 | ||
| 577 | #r egion REGI STRY_CORE_ DATA | |
| 578 | ||
| 579 | [W ebMethod] | |
| 580 | pu blic REGIS TRY_CORE_D ATA REGIST RY_CORE_DA TA_GET_BY_ REGISTRY_C ORE(string identity, int regis tryId, int CORE_TYPE _ID) | |
| 581 | { | |
| 582 | return V IRPManager .REGISTRY_ CORE_DATA_ GET_BY_REG ISTRY_CORE (identity, registryI d, CORE_TY PE_ID); | |
| 583 | } | |
| 584 | ||
| 585 | [W ebMethod] | |
| 586 | pu blic List< REGISTRY_C ORE_DATA> REGISTRY_C ORE_DATA_G ET_ALL_BY_ REGISTRY(s tring iden tity, int registryId ) | |
| 587 | { | |
| 588 | return V IRPManager .REGISTRY_ CORE_DATA_ GET_ALL_BY _REGISTRY( identity, registryId ); | |
| 589 | } | |
| 590 | ||
| 591 | [W ebMethod] | |
| 592 | pu blic bool REGISTRY_C ORE_DATA_S AVE_LIST(s tring iden tity, int registryId , List<REG ISTRY_CORE _DATA> cor es) | |
| 593 | { | |
| 594 | return V IRPManager .REGISTRY_ CORE_DATA_ SAVE_LIST( identity, registryId , cores); | |
| 595 | } | |
| 596 | ||
| 597 | [O perationCo ntract] | |
| 598 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REGIST RY_CORE_DA TA_GET_BY_ REGISTRY_C ORE?identi ty={identi ty}®ist ryId={regi stryId}&co reTypeId={ coreTypeId }")] | |
| 599 | pu blic REGIS TRY_CORE_D ATA REGIST RY_CORE_DA TA_GET_BY_ REGISTRY_C ORE_XML(st ring ident ity, int r egistryId, int coreT ypeId) | |
| 600 | { | |
| 601 | return t his.REGIST RY_CORE_DA TA_GET_BY_ REGISTRY_C ORE(identi ty, regist ryId, core TypeId); | |
| 602 | } | |
| 603 | ||
| 604 | [O perationCo ntract] | |
| 605 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REGIST RY_CORE_DA TA_GET_ALL _BY_REGIST RY?identit y={identit y}®istr yId={regis tryId}")] | |
| 606 | pu blic List< REGISTRY_C ORE_DATA> REGISTRY_C ORE_DATA_G ET_ALL_BY_ REGISTRY_X ML(string identity, int regist ryId) | |
| 607 | { | |
| 608 | return t his.REGIST RY_CORE_DA TA_GET_ALL _BY_REGIST RY(identit y, registr yId); | |
| 609 | } | |
| 610 | ||
| 611 | [O perationCo ntract] | |
| 612 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REGIST RY_CORE_DA TA_SAVE_LI ST?identit y={identit y}®istr yId={regis tryId}&cor es={cores} ")] | |
| 613 | pu blic bool REGISTRY_C ORE_DATA_S AVE_LIST_X ML(string identity, int regist ryId, List <REGISTRY_ CORE_DATA> cores) | |
| 614 | { | |
| 615 | return t his.REGIST RY_CORE_DA TA_SAVE_LI ST(identit y, registr yId, cores ); | |
| 616 | } | |
| 617 | ||
| 618 | [O perationCo ntract] | |
| 619 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REGI STRY_CORE_ DATA_GET_B Y_REGISTRY _CORE?iden tity={iden tity}®i stryId={re gistryId}& coreTypeId ={coreType Id}")] | |
| 620 | pu blic REGIS TRY_CORE_D ATA REGIST RY_CORE_DA TA_GET_BY_ REGISTRY_C ORE_JSON(s tring iden tity, int registryId , int core TypeId) | |
| 621 | { | |
| 622 | return t his.REGIST RY_CORE_DA TA_GET_BY_ REGISTRY_C ORE(identi ty, regist ryId, core TypeId); | |
| 623 | } | |
| 624 | ||
| 625 | [O perationCo ntract] | |
| 626 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REGI STRY_CORE_ DATA_GET_A LL_BY_REGI STRY?ident ity={ident ity}®is tryId={reg istryId}") ] | |
| 627 | pu blic List< REGISTRY_C ORE_DATA> REGISTRY_C ORE_DATA_G ET_ALL_BY_ REGISTRY_J SON(string identity, int regis tryId) | |
| 628 | { | |
| 629 | return t his.REGIST RY_CORE_DA TA_GET_ALL _BY_REGIST RY(identit y, registr yId); | |
| 630 | } | |
| 631 | ||
| 632 | [O perationCo ntract] | |
| 633 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REGI STRY_CORE_ DATA_SAVE_ LIST?ident ity={ident ity}®is tryId={reg istryId}&c ores={core s}")] | |
| 634 | pu blic bool REGISTRY_C ORE_DATA_S AVE_LIST_J SON(string identity, int regis tryId, Lis t<REGISTRY _CORE_DATA > cores) | |
| 635 | { | |
| 636 | return t his.REGIST RY_CORE_DA TA_SAVE_LI ST(identit y, registr yId, cores ); | |
| 637 | } | |
| 638 | ||
| 639 | #e ndregion | |
| 640 | ||
| 641 | #r egion SETT INGS | |
| 642 | ||
| 643 | [W ebMethod] | |
| 644 | pu blic int S ETTINGS_SA VE(string identity, int regist ryId, SETT INGS objSa ve) | |
| 645 | { | |
| 646 | return V IRPManager .SETTINGS_ SAVE(ident ity, regis tryId, obj Save); | |
| 647 | } | |
| 648 | ||
| 649 | [O perationCo ntract] | |
| 650 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/SETTIN GS_SAVE?id entity={id entity}&re gistryId={ registryId }")] | |
| 651 | pu blic int S ETTINGS_SA VE_XML(str ing identi ty, int re gistryId, SETTINGS o bjSave) | |
| 652 | { | |
| 653 | return t his.SETTIN GS_SAVE(id entity, re gistryId, objSave); | |
| 654 | } | |
| 655 | ||
| 656 | [O perationCo ntract] | |
| 657 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/SETT INGS_SAVE? identity={ identity}& registryId ={registry Id}")] | |
| 658 | pu blic int S ETTINGS_SA VE_JSON(st ring ident ity, int r egistryId, SETTINGS objSave) | |
| 659 | { | |
| 660 | return t his.SETTIN GS_SAVE(id entity, re gistryId, objSave); | |
| 661 | } | |
| 662 | ||
| 663 | [W ebMethod] | |
| 664 | pu blic SETTI NGS SETTIN GS_GET_REG ISTRYNAME( string ide ntity, int registryI d, string registryNa me) | |
| 665 | { | |
| 666 | return V IRPManager .SETTINGS_ GET_REGIST RYNAME(ide ntity, reg istryId, r egistryNam e); | |
| 667 | } | |
| 668 | ||
| 669 | [O perationCo ntract] | |
| 670 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/SETTIN GS_GET_REG ISTRYNAME? identity={ identity}& registryId ={registry Id}®ist ryName={re gistryName }")] | |
| 671 | pu blic SETTI NGS SETTIN GS_GET_REG ISTRYNAME_ XML(string identity, int regis tryId, str ing regist ryName) | |
| 672 | { | |
| 673 | return t his.SETTIN GS_GET_REG ISTRYNAME( identity, registryId , registry Name); | |
| 674 | } | |
| 675 | ||
| 676 | [O perationCo ntract] | |
| 677 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/SETT INGS_GET_R EGISTRYNAM E?identity ={identity }®istry Id={regist ryId}®i stryName={ registryNa me}")] | |
| 678 | pu blic SETTI NGS SETTIN GS_GET_REG ISTRYNAME_ JSON(strin g identity , int regi stryId, st ring regis tryName) | |
| 679 | { | |
| 680 | return t his.SETTIN GS_GET_REG ISTRYNAME( identity, registryId , registry Name); | |
| 681 | } | |
| 682 | ||
| 683 | [W ebMethod] | |
| 684 | pu blic SETTI NGS SETTIN GS_GET_HOM E_PAGE() | |
| 685 | { | |
| 686 | return V IRPManager .SETTINGS_ GET_HOME_P AGE(); | |
| 687 | } | |
| 688 | ||
| 689 | [O perationCo ntract] | |
| 690 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/GET_HO ME_PAGE_SE TTING")] | |
| 691 | pu blic SETTI NGS SETTIN GS_GET_HOM E_PAGE_XML () | |
| 692 | { | |
| 693 | return t his.SETTIN GS_GET_HOM E_PAGE(); | |
| 694 | } | |
| 695 | ||
| 696 | [O perationCo ntract] | |
| 697 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/GET_ HOME_PAGE_ SETTING")] | |
| 698 | pu blic SETTI NGS SETTIN GS_GET_HOM E_PAGE_JSO N() | |
| 699 | { | |
| 700 | return t his.SETTIN GS_GET_HOM E_PAGE(); | |
| 701 | } | |
| 702 | ||
| 703 | #e ndregion | |
| 704 | ||
| 705 | #r egion SSta ff_SStaff | |
| 706 | ||
| 707 | [W ebMethod] | |
| 708 | pu blic SStaf f_SStaff S Staff_SSta ff_GET(str ing identi ty, int re gistryId, int id) | |
| 709 | { | |
| 710 | return V IRPManager .SStaff_SS taff_GET(i dentity, r egistryId, id); | |
| 711 | } | |
| 712 | ||
| 713 | [O perationCo ntract] | |
| 714 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/SStaff _SStaff_GE T?identity ={identity }®istry Id={regist ryId}&id={ id}")] | |
| 715 | pu blic SStaf f_SStaff S Staff_SSta ff_GET_XML (string id entity, in t registry Id, int id ) | |
| 716 | { | |
| 717 | return t his.SStaff _SStaff_GE T(identity , registry Id, id); | |
| 718 | } | |
| 719 | ||
| 720 | [O perationCo ntract] | |
| 721 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/SSta ff_SStaff_ GET?identi ty={identi ty}®ist ryId={regi stryId}&id ={id}")] | |
| 722 | pu blic SStaf f_SStaff S Staff_SSta ff_GET_JSO N(string i dentity, i nt registr yId, int i d) | |
| 723 | { | |
| 724 | return t his.SStaff _SStaff_GE T(identity , registry Id, id); | |
| 725 | } | |
| 726 | ||
| 727 | [W ebMethod(B ufferRespo nse = fals e, CacheDu ration = 6 0)] | |
| 728 | pu blic List< SStaff_SSt aff> SStaf f_SStaff_G ET_ALL_BY_ REGISTRY(s tring iden tity, int registryId ) | |
| 729 | { | |
| 730 | return V IRPManager .SStaff_SS taff_GET_A LL_BY_REGI STRY(ident ity, regis tryId); | |
| 731 | } | |
| 732 | ||
| 733 | [O perationCo ntract] | |
| 734 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/SStaff _SStaff_GE T_ALL_BY_R EGISTRY?id entity={id entity}&re gistryId={ registryId }")] | |
| 735 | pu blic List< SStaff_SSt aff> SStaf f_SStaff_G ET_ALL_BY_ REGISTRY_X ML(string identity, int regist ryId) | |
| 736 | { | |
| 737 | return t his.SStaff _SStaff_GE T_ALL_BY_R EGISTRY(id entity, re gistryId); | |
| 738 | } | |
| 739 | ||
| 740 | [O perationCo ntract] | |
| 741 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/SSta ff_SStaff_ GET_ALL_BY _REGISTRY? identity={ identity}& registryId ={registry Id}")] | |
| 742 | pu blic List< SStaff_SSt aff> SStaf f_SStaff_G ET_ALL_BY_ REGISTRY_J SON(string identity, int regis tryId) | |
| 743 | { | |
| 744 | return t his.SStaff _SStaff_GE T_ALL_BY_R EGISTRY(id entity, re gistryId); | |
| 745 | } | |
| 746 | ||
| 747 | [W ebMethod(B ufferRespo nse = fals e, CacheDu ration = 6 0)] | |
| 748 | pu blic List< SStaff_SSt aff> SStaf f_SStaff_G ET_ALL_BY_ REGISTRY_F ILTER(stri ng identit y, int reg istryId, s tring sear chColumn, string sea rchText, s tring sort Expression , int star tRow, int maxRows) | |
| 749 | { | |
| 750 | return V IRPManager .SStaff_SS taff_GET_A LL_BY_REGI STRY(ident ity, regis tryId, sea rchColumn, searchTex t, sortExp ression, s tartRow, m axRows); | |
| 751 | } | |
| 752 | ||
| 753 | [O perationCo ntract] | |
| 754 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/SStaff _SStaff_GE T_ALL_BY_R EGISTRY_FI LTER?ident ity={ident ity}®is tryId={reg istryId}&s earchColum n={searchC olumn}&sea rchText={s earchText} &sortExpre ssion={sor tExpressio n}&startRo w={startRo w}&maxRows ={maxRows} ")] | |
| 755 | pu blic List< SStaff_SSt aff> SStaf f_SStaff_G ET_ALL_BY_ REGISTRY_F ILTER_XML( string ide ntity, int registryI d, string searchColu mn, string searchTex t, string sortExpres sion, int startRow, int maxRow s) | |
| 756 | { | |
| 757 | return t his.SStaff _SStaff_GE T_ALL_BY_R EGISTRY_FI LTER(ident ity, regis tryId, sea rchColumn, searchTex t, sortExp ression, s tartRow, m axRows); | |
| 758 | } | |
| 759 | ||
| 760 | [O perationCo ntract] | |
| 761 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/SSta ff_SStaff_ GET_ALL_BY _REGISTRY_ FILTER?ide ntity={ide ntity}® istryId={r egistryId} &searchCol umn={searc hColumn}&s earchText= {searchTex t}&sortExp ression={s ortExpress ion}&start Row={start Row}&maxRo ws={maxRow s}")] | |
| 762 | pu blic List< SStaff_SSt aff> SStaf f_SStaff_G ET_ALL_BY_ REGISTRY_F ILTER_JSON (string id entity, in t registry Id, string searchCol umn, strin g searchTe xt, string sortExpre ssion, int startRow, int maxRo ws) | |
| 763 | { | |
| 764 | return t his.SStaff _SStaff_GE T_ALL_BY_R EGISTRY_FI LTER(ident ity, regis tryId, sea rchColumn, searchTex t, sortExp ression, s tartRow, m axRows); | |
| 765 | } | |
| 766 | ||
| 767 | [W ebMethod(B ufferRespo nse = fals e, CacheDu ration = 6 0)] | |
| 768 | pu blic int S Staff_SSta ff_GET_ALL _BY_REGIST RY_FILTER_ COUNT(stri ng identit y, int reg istryId, s tring sear chColumn, string sea rchText, s tring sort Expression ) | |
| 769 | { | |
| 770 | return V IRPManager .SStaff_SS taff_GET_A LL_BY_REGI STRY_COUNT (identity, registryI d, searchC olumn, sea rchText, s ortExpress ion); | |
| 771 | } | |
| 772 | ||
| 773 | [O perationCo ntract] | |
| 774 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/SStaff _SStaff_GE T_ALL_BY_R EGISTRY_FI LTER_COUNT ?identity= {identity} ®istryI d={registr yId}&searc hColumn={s earchColum n}&searchT ext={searc hText}&sor tExpressio n={sortExp ression}") ] | |
| 775 | pu blic int S Staff_SSta ff_GET_ALL _BY_REGIST RY_FILTER_ COUNT_XML( string ide ntity, int registryI d, string searchColu mn, string searchTex t, string sortExpres sion) | |
| 776 | { | |
| 777 | return t his.SStaff _SStaff_GE T_ALL_BY_R EGISTRY_FI LTER_COUNT (identity, registryI d, searchC olumn, sea rchText, s ortExpress ion); | |
| 778 | } | |
| 779 | ||
| 780 | [O perationCo ntract] | |
| 781 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/SSta ff_SStaff_ GET_ALL_BY _REGISTRY_ FILTER_COU NT?identit y={identit y}®istr yId={regis tryId}&sea rchColumn= {searchCol umn}&searc hText={sea rchText}&s ortExpress ion={sortE xpression} ")] | |
| 782 | pu blic int S Staff_SSta ff_GET_ALL _BY_REGIST RY_FILTER_ COUNT_JSON (string id entity, in t registry Id, string searchCol umn, strin g searchTe xt, string sortExpre ssion) | |
| 783 | { | |
| 784 | return t his.SStaff _SStaff_GE T_ALL_BY_R EGISTRY_FI LTER_COUNT (identity, registryI d, searchC olumn, sea rchText, s ortExpress ion); | |
| 785 | } | |
| 786 | ||
| 787 | [W ebMethod] | |
| 788 | pu blic List< SStaff_SSt aff> SStaf f_SStaff_G ET_ALL_BY_ NAME(strin g identity , int regi stryId, st ring lastN ame, strin g firstNam e) | |
| 789 | { | |
| 790 | return V IRPManager .SStaff_SS taff_GET_A LL_BY_NAME (identity, registryI d, lastNam e, firstNa me); | |
| 791 | } | |
| 792 | ||
| 793 | [O perationCo ntract] | |
| 794 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/SStaff _SStaff_GE T_ALL_BY_N AME?identi ty={identi ty}®ist ryId={regi stryId}&la stName={la stName}&fi rstName={f irstName}" )] | |
| 795 | pu blic List< SStaff_SSt aff> SStaf f_SStaff_G ET_ALL_BY_ NAME_XML(s tring iden tity, int registryId , string l astName, s tring firs tName) | |
| 796 | { | |
| 797 | return t his.SStaff _SStaff_GE T_ALL_BY_N AME(identi ty, regist ryId, last Name, firs tName); | |
| 798 | } | |
| 799 | ||
| 800 | [O perationCo ntract] | |
| 801 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/SSta ff_SStaff_ GET_ALL_BY _NAME?iden tity={iden tity}®i stryId={re gistryId}& lastName={ lastName}& firstName= {firstName }")] | |
| 802 | pu blic List< SStaff_SSt aff> SStaf f_SStaff_G ET_ALL_BY_ NAME_JSON( string ide ntity, int registryI d, string lastName, string fir stName) | |
| 803 | { | |
| 804 | return t his.SStaff _SStaff_GE T_ALL_BY_N AME(identi ty, regist ryId, last Name, firs tName); | |
| 805 | } | |
| 806 | ||
| 807 | #e ndregion | |
| 808 | ||
| 809 | #r egion STD_ INSTITUTIO N | |
| 810 | ||
| 811 | [W ebMethod] | |
| 812 | pu blic STD_I NSTITUTION STD_INSTI TUTION_GET _COMPLETE( string ide ntity, int registryI d, int id) | |
| 813 | { | |
| 814 | return V IRPManager .STD_INSTI TUTION_GET _COMPLETE( identity, registryId , id); | |
| 815 | } | |
| 816 | ||
| 817 | [O perationCo ntract] | |
| 818 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_IN STITUTION_ GET_COMPLE TE?identit y={identit y}®istr yId={regis tryId}&id= {id}")] | |
| 819 | pu blic STD_I NSTITUTION STD_INSTI TUTION_GET _COMPLETE_ XML(string identity, int regis tryId, int id) | |
| 820 | { | |
| 821 | return t his.STD_IN STITUTION_ GET_COMPLE TE(identit y, registr yId, id); | |
| 822 | } | |
| 823 | ||
| 824 | [O perationCo ntract] | |
| 825 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ INSTITUTIO N_GET_COMP LETE?ident ity={ident ity}®is tryId={reg istryId}&i d={id}")] | |
| 826 | pu blic STD_I NSTITUTION STD_INSTI TUTION_GET _COMPLETE_ JSON(strin g identity , int regi stryId, in t id) | |
| 827 | { | |
| 828 | return t his.STD_IN STITUTION_ GET_COMPLE TE(identit y, registr yId, id); | |
| 829 | } | |
| 830 | ||
| 831 | [W ebMethod] | |
| 832 | pu blic List< STD_INSTIT UTION> STD _INSTITUTI ON_GET_FAC S(string i dentity, i nt registr yId) | |
| 833 | { | |
| 834 | return V IRPManager .STD_INSTI TUTION_GET _FACS(iden tity, regi stryId); | |
| 835 | } | |
| 836 | ||
| 837 | [O perationCo ntract] | |
| 838 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_IN STITUTION_ GET_FACS?i dentity={i dentity}&r egistryId= {registryI d}")] | |
| 839 | pu blic List< STD_INSTIT UTION> STD _INSTITUTI ON_GET_FAC S_XML(stri ng identit y, int reg istryId) | |
| 840 | { | |
| 841 | return t his.STD_IN STITUTION_ GET_FACS(i dentity, r egistryId) ; | |
| 842 | } | |
| 843 | ||
| 844 | [O perationCo ntract] | |
| 845 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ INSTITUTIO N_GET_FACS ?identity= {identity} ®istryI d={registr yId}")] | |
| 846 | pu blic List< STD_INSTIT UTION> STD _INSTITUTI ON_GET_FAC S_JSON(str ing identi ty, int re gistryId) | |
| 847 | { | |
| 848 | return t his.STD_IN STITUTION_ GET_FACS(i dentity, r egistryId) ; | |
| 849 | } | |
| 850 | ||
| 851 | #e ndregion | |
| 852 | ||
| 853 | #r egion STD_ MENU_ITEMS | |
| 854 | ||
| 855 | [W ebMethod] | |
| 856 | pu blic STD_M ENU_ITEMS STD_MENU_I TEMS_GET(s tring iden tity, int registryId , int id) | |
| 857 | { | |
| 858 | return V IRPManager .STD_MENU_ ITEMS_GET( identity, registryId , id); | |
| 859 | } | |
| 860 | ||
| 861 | [W ebMethod] | |
| 862 | pu blic int S TD_MENU_IT EMS_SAVE(s tring iden tity, int registryId , STD_MENU _ITEMS obj Save) | |
| 863 | { | |
| 864 | return V IRPManager .STD_MENU_ ITEMS_SAVE (identity, registryI d, objSave ); | |
| 865 | } | |
| 866 | ||
| 867 | [W ebMethod] | |
| 868 | pu blic Boole an STD_MEN U_ITEMS_DE LETE(strin g identity , int regi stryId, in t id) | |
| 869 | { | |
| 870 | return V IRPManager .STD_MENU_ ITEMS_DELE TE(identit y, registr yId, id); | |
| 871 | } | |
| 872 | ||
| 873 | [O perationCo ntract] | |
| 874 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_ME NU_ITEMS_G ET?identit y={identit y}®istr yId={regis tryId}&id= {id}")] | |
| 875 | pu blic STD_M ENU_ITEMS STD_MENU_I TEMS_GET_X ML(string identity, int regist ryId, int id) | |
| 876 | { | |
| 877 | return t his.STD_ME NU_ITEMS_G ET(identit y, registr yId, id); | |
| 878 | } | |
| 879 | ||
| 880 | [O perationCo ntract] | |
| 881 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_ME NU_ITEMS_S AVE?identi ty={identi ty}®ist ryId={regi stryId}")] | |
| 882 | pu blic int S TD_MENU_IT EMS_SAVE_X ML(string identity, int regist ryId, STD_ MENU_ITEMS objSave) | |
| 883 | { | |
| 884 | return t his.STD_ME NU_ITEMS_S AVE(identi ty, regist ryId, objS ave); | |
| 885 | } | |
| 886 | ||
| 887 | [O perationCo ntract] | |
| 888 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_ME NU_ITEMS_D ELETE?iden tity={iden tity}®i stryId={re gistryId}& id={id}")] | |
| 889 | pu blic Boole an STD_MEN U_ITEMS_DE LETE_XML(s tring iden tity, int registryId , int id) | |
| 890 | { | |
| 891 | return t his.STD_ME NU_ITEMS_D ELETE(iden tity, regi stryId, id ); | |
| 892 | } | |
| 893 | ||
| 894 | [O perationCo ntract] | |
| 895 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ MENU_ITEMS _GET?ident ity={ident ity}®is tryId={reg istryId}&i d={id}")] | |
| 896 | pu blic STD_M ENU_ITEMS STD_MENU_I TEMS_GET_J SON(string identity, int regis tryId, int id) | |
| 897 | { | |
| 898 | return t his.STD_ME NU_ITEMS_G ET(identit y, registr yId, id); | |
| 899 | } | |
| 900 | ||
| 901 | [O perationCo ntract] | |
| 902 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ MENU_ITEMS _SAVE?iden tity={iden tity}®i stryId={re gistryId}" )] | |
| 903 | pu blic int S TD_MENU_IT EMS_SAVE_J SON(string identity, int regis tryId, STD _MENU_ITEM S objSave) | |
| 904 | { | |
| 905 | return t his.STD_ME NU_ITEMS_S AVE(identi ty, regist ryId, objS ave); | |
| 906 | } | |
| 907 | ||
| 908 | [O perationCo ntract] | |
| 909 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ MENU_ITEMS _DELETE?id entity={id entity}&re gistryId={ registryId }&id={id}" )] | |
| 910 | pu blic Boole an STD_MEN U_ITEMS_DE LETE_JSON( string ide ntity, int registryI d, int id) | |
| 911 | { | |
| 912 | return t his.STD_ME NU_ITEMS_D ELETE(iden tity, regi stryId, id ); | |
| 913 | } | |
| 914 | ||
| 915 | [W ebMethod] | |
| 916 | pu blic List< STD_MENU_I TEMS> STD_ MENU_ITEMS _GET_ALL_B Y_REGISTRY (string id entity, in t registry Id) | |
| 917 | { | |
| 918 | return V IRPManager .STD_MENU_ ITEMS_GET_ ALL_BY_REG ISTRY(iden tity, regi stryId); | |
| 919 | } | |
| 920 | ||
| 921 | [O perationCo ntract] | |
| 922 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_ME NU_ITEMS_G ET_ALL_BY_ REGISTRY?i dentity={i dentity}&r egistryId= {registryI d}")] | |
| 923 | pu blic List< STD_MENU_I TEMS> STD_ MENU_ITEMS _GET_ALL_B Y_REGISTRY _XML(strin g identity , int regi stryId) | |
| 924 | { | |
| 925 | return t his.STD_ME NU_ITEMS_G ET_ALL_BY_ REGISTRY(i dentity, r egistryId) ; | |
| 926 | } | |
| 927 | ||
| 928 | [O perationCo ntract] | |
| 929 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ MENU_ITEMS _GET_ALL_B Y_REGISTRY ?identity= {identity} ®istryI d={registr yId}")] | |
| 930 | pu blic List< STD_MENU_I TEMS> STD_ MENU_ITEMS _GET_ALL_B Y_REGISTRY _JSON(stri ng identit y, int reg istryId) | |
| 931 | { | |
| 932 | return t his.STD_ME NU_ITEMS_G ET_ALL_BY_ REGISTRY(i dentity, r egistryId) ; | |
| 933 | } | |
| 934 | ||
| 935 | [W ebMethod] | |
| 936 | pu blic List< STD_MENU_I TEMS> STD_ MENU_ITEMS _GET_MENU( string ide ntity, int registryI d, string path) | |
| 937 | { | |
| 938 | return V IRPManager .STD_MENU_ ITEMS_GET_ MENU(ident ity, regis tryId, pat h); | |
| 939 | } | |
| 940 | ||
| 941 | [O perationCo ntract] | |
| 942 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_ME NU_ITEMS_G ET_MENU?id entity={id entity}&re gistryId={ registryId }&path={pa th}")] | |
| 943 | pu blic List< STD_MENU_I TEMS> STD_ MENU_ITEMS _GET_MENU_ XML(string identity, int regis tryId, str ing path) | |
| 944 | { | |
| 945 | return t his.STD_ME NU_ITEMS_G ET_MENU(id entity, re gistryId, path); | |
| 946 | } | |
| 947 | ||
| 948 | [O perationCo ntract] | |
| 949 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ MENU_ITEMS _GET_MENU? identity={ identity}& registryId ={registry Id}&path={ path}")] | |
| 950 | pu blic List< STD_MENU_I TEMS> STD_ MENU_ITEMS _GET_MENU_ JSON(strin g identity , int regi stryId, st ring path) | |
| 951 | { | |
| 952 | return t his.STD_ME NU_ITEMS_G ET_MENU(id entity, re gistryId, path); | |
| 953 | } | |
| 954 | ||
| 955 | #e ndregion | |
| 956 | ||
| 957 | #r egion STD_ QUESTION | |
| 958 | ||
| 959 | [W ebMethod] | |
| 960 | pu blic STD_Q UESTION ST D_QUESTION _GET(strin g identity , int regi stryId, in t id) | |
| 961 | { | |
| 962 | return V IRPManager .STD_QUEST ION_GET(id entity, re gistryId, id); | |
| 963 | } | |
| 964 | ||
| 965 | [W ebMethod] | |
| 966 | pu blic int S TD_QUESTIO N_SAVE(str ing identi ty, int re gistryId, STD_QUESTI ON objSave ) | |
| 967 | { | |
| 968 | return V IRPManager .STD_QUEST ION_SAVE(i dentity, r egistryId, objSave); | |
| 969 | } | |
| 970 | ||
| 971 | [W ebMethod] | |
| 972 | pu blic Boole an STD_QUE STION_DELE TE(string identity, int regist ryId, int id) | |
| 973 | { | |
| 974 | return V IRPManager .STD_QUEST ION_DELETE (identity, registryI d, id); | |
| 975 | } | |
| 976 | ||
| 977 | [O perationCo ntract] | |
| 978 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_QU ESTION_GET ?identity= {identity} ®istryI d={registr yId}&id={i d}")] | |
| 979 | pu blic STD_Q UESTION ST D_QUESTION _GET_XML(s tring iden tity, int registryId , int id) | |
| 980 | { | |
| 981 | return t his.STD_QU ESTION_GET (identity, registryI d, id); | |
| 982 | } | |
| 983 | ||
| 984 | [O perationCo ntract] | |
| 985 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_QU ESTION_SAV E?identity ={identity }®istry Id={regist ryId}")] | |
| 986 | pu blic int S TD_QUESTIO N_SAVE_XML (string id entity, in t registry Id, STD_QU ESTION obj Save) | |
| 987 | { | |
| 988 | return t his.STD_QU ESTION_SAV E(identity , registry Id, objSav e); | |
| 989 | } | |
| 990 | ||
| 991 | [O perationCo ntract] | |
| 992 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_QU ESTION_DEL ETE?identi ty={identi ty}®ist ryId={regi stryId}&id ={id}")] | |
| 993 | pu blic Boole an STD_QUE STION_DELE TE_XML(str ing identi ty, int re gistryId, int id) | |
| 994 | { | |
| 995 | return t his.STD_QU ESTION_DEL ETE(identi ty, regist ryId, id); | |
| 996 | } | |
| 997 | ||
| 998 | [O perationCo ntract] | |
| 999 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ QUESTION_G ET?identit y={identit y}®istr yId={regis tryId}&id= {id}")] | |
| 1000 | pu blic STD_Q UESTION ST D_QUESTION _GET_JSON( string ide ntity, int registryI d, int id) | |
| 1001 | { | |
| 1002 | return t his.STD_QU ESTION_GET (identity, registryI d, id); | |
| 1003 | } | |
| 1004 | ||
| 1005 | [O perationCo ntract] | |
| 1006 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ QUESTION_S AVE?identi ty={identi ty}®ist ryId={regi stryId}")] | |
| 1007 | pu blic int S TD_QUESTIO N_SAVE_JSO N(string i dentity, i nt registr yId, STD_Q UESTION ob jSave) | |
| 1008 | { | |
| 1009 | return t his.STD_QU ESTION_SAV E(identity , registry Id, objSav e); | |
| 1010 | } | |
| 1011 | ||
| 1012 | [O perationCo ntract] | |
| 1013 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ QUESTION_D ELETE?iden tity={iden tity}®i stryId={re gistryId}& id={id}")] | |
| 1014 | pu blic Boole an STD_QUE STION_DELE TE_JSON(st ring ident ity, int r egistryId, int id) | |
| 1015 | { | |
| 1016 | return t his.STD_QU ESTION_DEL ETE(identi ty, regist ryId, id); | |
| 1017 | } | |
| 1018 | ||
| 1019 | [W ebMethod] | |
| 1020 | pu blic List< STD_QUESTI ON> STD_QU ESTION_GET _ALL_BY_SU RVEY(strin g identity , int regi stryId, in t surveyTy peId) | |
| 1021 | { | |
| 1022 | return V IRPManager .STD_QUEST ION_GET_AL L_BY_SURVE Y(identity , registry Id, survey TypeId); | |
| 1023 | } | |
| 1024 | ||
| 1025 | [O perationCo ntract] | |
| 1026 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_QU ESTION_GET _ALL_BY_SU RVEY?ident ity={ident ity}®is tryId={reg istryId}&s urveyTypeI d={surveyT ypeId}")] | |
| 1027 | pu blic List< STD_QUESTI ON> STD_QU ESTION_GET _ALL_BY_SU RVEY_XML(s tring iden tity, int registryId , int surv eyTypeId) | |
| 1028 | { | |
| 1029 | return t his.STD_QU ESTION_GET _ALL_BY_SU RVEY(ident ity, regis tryId, sur veyTypeId) ; | |
| 1030 | } | |
| 1031 | ||
| 1032 | [O perationCo ntract] | |
| 1033 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ QUESTION_G ET_ALL_BY_ SURVEY?ide ntity={ide ntity}® istryId={r egistryId} &surveyTyp eId={surve yTypeId}") ] | |
| 1034 | pu blic List< STD_QUESTI ON> STD_QU ESTION_GET _ALL_BY_SU RVEY_JSON( string ide ntity, int registryI d, int sur veyTypeId) | |
| 1035 | { | |
| 1036 | return t his.STD_QU ESTION_GET _ALL_BY_SU RVEY(ident ity, regis tryId, sur veyTypeId) ; | |
| 1037 | } | |
| 1038 | ||
| 1039 | [W ebMethod] | |
| 1040 | pu blic Boole an STD_QUE STION_COPY _CHOICES(s tring iden tity, int registryId , int oldQ uestionId, int newQu estionId) | |
| 1041 | { | |
| 1042 | return V IRPManager .STD_QUEST ION_COPY_C HOICES(ide ntity, reg istryId, o ldQuestion Id, newQue stionId); | |
| 1043 | } | |
| 1044 | ||
| 1045 | [O perationCo ntract] | |
| 1046 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_QU ESTION_COP Y_CHOICES? identity={ identity}& registryId ={registry Id}&oldQue stionId={o ldQuestion Id}&newQue stionId={n ewQuestion Id}")] | |
| 1047 | pu blic Boole an STD_QUE STION_COPY _CHOICES_X ML(string identity, int regist ryId, int oldQuestio nId, int n ewQuestion Id) | |
| 1048 | { | |
| 1049 | return t his.STD_QU ESTION_COP Y_CHOICES( identity, registryId , oldQuest ionId, new QuestionId ); | |
| 1050 | } | |
| 1051 | ||
| 1052 | [O perationCo ntract] | |
| 1053 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ QUESTION_C OPY_CHOICE S?identity ={identity }®istry Id={regist ryId}&oldQ uestionId= {oldQuesti onId}&newQ uestionId= {newQuesti onId}")] | |
| 1054 | pu blic Boole an STD_QUE STION_COPY _CHOICES_J SON(string identity, int regis tryId, int oldQuesti onId, int newQuestio nId) | |
| 1055 | { | |
| 1056 | return t his.STD_QU ESTION_COP Y_CHOICES( identity, registryId , oldQuest ionId, new QuestionId ); | |
| 1057 | } | |
| 1058 | ||
| 1059 | #e ndregion | |
| 1060 | ||
| 1061 | #r egion STD_ QUESTION_C HOICE | |
| 1062 | ||
| 1063 | [W ebMethod] | |
| 1064 | pu blic STD_Q UESTION_CH OICE STD_Q UESTION_CH OICE_GET(s tring iden tity, int registryId , int id) | |
| 1065 | { | |
| 1066 | return V IRPManager .STD_QUEST ION_CHOICE _GET(ident ity, regis tryId, id) ; | |
| 1067 | } | |
| 1068 | ||
| 1069 | [W ebMethod] | |
| 1070 | pu blic int S TD_QUESTIO N_CHOICE_S AVE(string identity, int regis tryId, STD _QUESTION_ CHOICE obj Save) | |
| 1071 | { | |
| 1072 | return V IRPManager .STD_QUEST ION_CHOICE _SAVE(iden tity, regi stryId, ob jSave); | |
| 1073 | } | |
| 1074 | ||
| 1075 | [W ebMethod] | |
| 1076 | pu blic Boole an STD_QUE STION_CHOI CE_DELETE( string ide ntity, int registryI d, int id) | |
| 1077 | { | |
| 1078 | return V IRPManager .STD_QUEST ION_CHOICE _DELETE(id entity, re gistryId, id); | |
| 1079 | } | |
| 1080 | ||
| 1081 | [O perationCo ntract] | |
| 1082 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_QU ESTION_CHO ICE_GET?id entity={id entity}&re gistryId={ registryId }&id={id}" )] | |
| 1083 | pu blic STD_Q UESTION_CH OICE STD_Q UESTION_CH OICE_GET_X ML(string identity, int regist ryId, int id) | |
| 1084 | { | |
| 1085 | return t his.STD_QU ESTION_CHO ICE_GET(id entity, re gistryId, id); | |
| 1086 | } | |
| 1087 | ||
| 1088 | [O perationCo ntract] | |
| 1089 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_QU ESTION_CHO ICE_SAVE?i dentity={i dentity}&r egistryId= {registryI d}")] | |
| 1090 | pu blic int S TD_QUESTIO N_CHOICE_S AVE_XML(st ring ident ity, int r egistryId, STD_QUEST ION_CHOICE objSave) | |
| 1091 | { | |
| 1092 | return t his.STD_QU ESTION_CHO ICE_SAVE(i dentity, r egistryId, objSave); | |
| 1093 | } | |
| 1094 | ||
| 1095 | [O perationCo ntract] | |
| 1096 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_QU ESTION_CHO ICE_DELETE ?identity= {identity} ®istryI d={registr yId}&id={i d}")] | |
| 1097 | pu blic Boole an STD_QUE STION_CHOI CE_DELETE_ XML(string identity, int regis tryId, int id) | |
| 1098 | { | |
| 1099 | return t his.STD_QU ESTION_CHO ICE_DELETE (identity, registryI d, id); | |
| 1100 | } | |
| 1101 | ||
| 1102 | [O perationCo ntract] | |
| 1103 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ QUESTION_C HOICE_GET? identity={ identity}& registryId ={registry Id}&id={id }")] | |
| 1104 | pu blic STD_Q UESTION_CH OICE STD_Q UESTION_CH OICE_GET_J SON(string identity, int regis tryId, int id) | |
| 1105 | { | |
| 1106 | return t his.STD_QU ESTION_CHO ICE_GET(id entity, re gistryId, id); | |
| 1107 | } | |
| 1108 | ||
| 1109 | [O perationCo ntract] | |
| 1110 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ QUESTION_C HOICE_SAVE ?identity= {identity} ®istryI d={registr yId}")] | |
| 1111 | pu blic int S TD_QUESTIO N_CHOICE_S AVE_JSON(s tring iden tity, int registryId , STD_QUES TION_CHOIC E objSave) | |
| 1112 | { | |
| 1113 | return t his.STD_QU ESTION_CHO ICE_SAVE(i dentity, r egistryId, objSave); | |
| 1114 | } | |
| 1115 | ||
| 1116 | [O perationCo ntract] | |
| 1117 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ QUESTION_C HOICE_DELE TE?identit y={identit y}®istr yId={regis tryId}&id= {id}")] | |
| 1118 | pu blic Boole an STD_QUE STION_CHOI CE_DELETE_ JSON(strin g identity , int regi stryId, in t id) | |
| 1119 | { | |
| 1120 | return t his.STD_QU ESTION_CHO ICE_DELETE (identity, registryI d, id); | |
| 1121 | } | |
| 1122 | ||
| 1123 | [W ebMethod] | |
| 1124 | pu blic List< STD_QUESTI ON_CHOICE> STD_QUEST ION_CHOICE _GET_ALL_B Y_QUESTION (string id entity, in t registry Id, int qu estionId) | |
| 1125 | { | |
| 1126 | return V IRPManager .STD_QUEST ION_CHOICE _GET_ALL_B Y_QUESTION (identity, registryI d, questio nId); | |
| 1127 | } | |
| 1128 | ||
| 1129 | [O perationCo ntract] | |
| 1130 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_QU ESTION_CHO ICE_GET_AL L_BY_QUEST ION?identi ty={identi ty}®ist ryId={regi stryId}&qu estionId={ questionId }")] | |
| 1131 | pu blic List< STD_QUESTI ON_CHOICE> STD_QUEST ION_CHOICE _GET_ALL_B Y_QUESTION _XML(strin g identity , int regi stryId, in t question Id) | |
| 1132 | { | |
| 1133 | return t his.STD_QU ESTION_CHO ICE_GET_AL L_BY_QUEST ION(identi ty, regist ryId, ques tionId); | |
| 1134 | } | |
| 1135 | ||
| 1136 | [O perationCo ntract] | |
| 1137 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ QUESTION_C HOICE_GET_ ALL_BY_QUE STION?iden tity={iden tity}®i stryId={re gistryId}& questionId ={question Id}")] | |
| 1138 | pu blic List< STD_QUESTI ON_CHOICE> STD_QUEST ION_CHOICE _GET_ALL_B Y_QUESTION _JSON(stri ng identit y, int reg istryId, i nt questio nId) | |
| 1139 | { | |
| 1140 | return t his.STD_QU ESTION_CHO ICE_GET_AL L_BY_QUEST ION(identi ty, regist ryId, ques tionId); | |
| 1141 | } | |
| 1142 | ||
| 1143 | #e ndregion | |
| 1144 | ||
| 1145 | #r egion STD_ REFERRALST S | |
| 1146 | ||
| 1147 | [W ebMethod] | |
| 1148 | pu blic STD_R EFERRALSTS STD_REFER RALSTS_GET _BY_CODE(s tring iden tity, int registryId , string c ode) | |
| 1149 | { | |
| 1150 | return V IRPManager .STD_REFER RALSTS_GET _BY_CODE(i dentity, r egistryId, code); | |
| 1151 | } | |
| 1152 | ||
| 1153 | [O perationCo ntract] | |
| 1154 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_RE FERRALSTS_ GET_BY_COD E?identity ={identity }®istry Id={regist ryId}&code ={code}")] | |
| 1155 | pu blic STD_R EFERRALSTS STD_REFER RALSTS_GET _BY_CODE_X ML(string identity, int regist ryId, stri ng code) | |
| 1156 | { | |
| 1157 | return t his.STD_RE FERRALSTS_ GET_BY_COD E(identity , registry Id, code); | |
| 1158 | } | |
| 1159 | ||
| 1160 | [O perationCo ntract] | |
| 1161 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ REFERRALST S_GET_BY_C ODE?identi ty={identi ty}®ist ryId={regi stryId}&co de={code}" )] | |
| 1162 | pu blic STD_R EFERRALSTS STD_REFER RALSTS_GET _BY_CODE_J SON(string identity, int regis tryId, str ing code) | |
| 1163 | { | |
| 1164 | return t his.STD_RE FERRALSTS_ GET_BY_COD E(identity , registry Id, code); | |
| 1165 | } | |
| 1166 | ||
| 1167 | #e ndregion | |
| 1168 | ||
| 1169 | #r egion STD_ REG_UDFs | |
| 1170 | ||
| 1171 | [W ebMethod] | |
| 1172 | pu blic STD_R EG_UDFs ST D_REG_UDFs _GET(strin g identity , int regi stryId, in t id) | |
| 1173 | { | |
| 1174 | return V IRPManager .STD_REG_U DFs_GET(id entity, re gistryId, id); | |
| 1175 | } | |
| 1176 | ||
| 1177 | [W ebMethod] | |
| 1178 | pu blic int S TD_REG_UDF s_SAVE(str ing identi ty, int re gistryId, STD_REG_UD Fs objSave ) | |
| 1179 | { | |
| 1180 | return V IRPManager .STD_REG_U DFs_SAVE(i dentity, r egistryId, objSave); | |
| 1181 | } | |
| 1182 | ||
| 1183 | [W ebMethod] | |
| 1184 | pu blic Boole an STD_REG _UDFs_DELE TE(string identity, int regist ryId, int id) | |
| 1185 | { | |
| 1186 | return V IRPManager .STD_REG_U DFs_DELETE (identity, registryI d, id); | |
| 1187 | } | |
| 1188 | ||
| 1189 | [O perationCo ntract] | |
| 1190 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_RE G_UDFs_GET ?identity= {identity} ®istryI d={registr yId}&id={i d}")] | |
| 1191 | pu blic STD_R EG_UDFs ST D_REG_UDFs _GET_XML(s tring iden tity, int registryId , int id) | |
| 1192 | { | |
| 1193 | return t his.STD_RE G_UDFs_GET (identity, registryI d, id); | |
| 1194 | } | |
| 1195 | ||
| 1196 | [O perationCo ntract] | |
| 1197 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_RE G_UDFs_SAV E?identity ={identity }®istry Id={regist ryId}")] | |
| 1198 | pu blic int S TD_REG_UDF s_SAVE_XML (string id entity, in t registry Id, STD_RE G_UDFs obj Save) | |
| 1199 | { | |
| 1200 | return t his.STD_RE G_UDFs_SAV E(identity , registry Id, objSav e); | |
| 1201 | } | |
| 1202 | ||
| 1203 | [O perationCo ntract] | |
| 1204 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_RE G_UDFs_DEL ETE?identi ty={identi ty}®ist ryId={regi stryId}&id ={id}")] | |
| 1205 | pu blic Boole an STD_REG _UDFs_DELE TE_XML(str ing identi ty, int re gistryId, int id) | |
| 1206 | { | |
| 1207 | return t his.STD_RE G_UDFs_DEL ETE(identi ty, regist ryId, id); | |
| 1208 | } | |
| 1209 | ||
| 1210 | [O perationCo ntract] | |
| 1211 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ REG_UDFs_G ET?identit y={identit y}®istr yId={regis tryId}&id= {id}")] | |
| 1212 | pu blic STD_R EG_UDFs ST D_REG_UDFs _GET_JSON( string ide ntity, int registryI d, int id) | |
| 1213 | { | |
| 1214 | return t his.STD_RE G_UDFs_GET (identity, registryI d, id); | |
| 1215 | } | |
| 1216 | ||
| 1217 | [O perationCo ntract] | |
| 1218 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ REG_UDFs_S AVE?identi ty={identi ty}®ist ryId={regi stryId}")] | |
| 1219 | pu blic int S TD_REG_UDF s_SAVE_JSO N(string i dentity, i nt registr yId, STD_R EG_UDFs ob jSave) | |
| 1220 | { | |
| 1221 | return t his.STD_RE G_UDFs_SAV E(identity , registry Id, objSav e); | |
| 1222 | } | |
| 1223 | ||
| 1224 | [O perationCo ntract] | |
| 1225 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ REG_UDFs_D ELETE?iden tity={iden tity}®i stryId={re gistryId}& id={id}")] | |
| 1226 | pu blic Boole an STD_REG _UDFs_DELE TE_JSON(st ring ident ity, int r egistryId, int id) | |
| 1227 | { | |
| 1228 | return t his.STD_RE G_UDFs_DEL ETE(identi ty, regist ryId, id); | |
| 1229 | } | |
| 1230 | ||
| 1231 | [W ebMethod] | |
| 1232 | pu blic List< STD_REG_UD Fs> STD_RE G_UDFs_GET _ALL_BY_RE GISTRY(str ing identi ty, int re gistryId) | |
| 1233 | { | |
| 1234 | return V IRPManager .STD_REG_U DFs_GET_AL L_BY_REGIS TRY(identi ty, regist ryId); | |
| 1235 | } | |
| 1236 | ||
| 1237 | [O perationCo ntract] | |
| 1238 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_RE G_UDFs_GET _ALL_BY_RE GISTRY?ide ntity={ide ntity}® istryId={r egistryId} ")] | |
| 1239 | pu blic List< STD_REG_UD Fs> STD_RE G_UDFs_GET _ALL_BY_RE GISTRY_XML (string id entity, in t registry Id) | |
| 1240 | { | |
| 1241 | return t his.STD_RE G_UDFs_GET _ALL_BY_RE GISTRY(ide ntity, reg istryId); | |
| 1242 | } | |
| 1243 | ||
| 1244 | [O perationCo ntract] | |
| 1245 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ REG_UDFs_G ET_ALL_BY_ REGISTRY?i dentity={i dentity}&r egistryId= {registryI d}")] | |
| 1246 | pu blic List< STD_REG_UD Fs> STD_RE G_UDFs_GET _ALL_BY_RE GISTRY_JSO N(string i dentity, i nt registr yId) | |
| 1247 | { | |
| 1248 | return t his.STD_RE G_UDFs_GET _ALL_BY_RE GISTRY(ide ntity, reg istryId); | |
| 1249 | } | |
| 1250 | ||
| 1251 | #e ndregion | |
| 1252 | ||
| 1253 | #r egion STD_ REGISTRY | |
| 1254 | ||
| 1255 | [W ebMethod] | |
| 1256 | pu blic STD_R EGISTRY ST D_REGISTRY _GET(strin g identity , int regi stryId, in t id) | |
| 1257 | { | |
| 1258 | return V IRPManager .STD_REGIS TRY_GET(id entity, re gistryId, id); | |
| 1259 | } | |
| 1260 | ||
| 1261 | [W ebMethod] | |
| 1262 | pu blic int S TD_REGISTR Y_SAVE(str ing identi ty, int re gistryId, STD_REGIST RY objSave ) | |
| 1263 | { | |
| 1264 | return V IRPManager .STD_REGIS TRY_SAVE(i dentity, r egistryId, objSave); | |
| 1265 | } | |
| 1266 | ||
| 1267 | [W ebMethod] | |
| 1268 | pu blic Boole an STD_REG ISTRY_DELE TE(string identity, int regist ryId, int id) | |
| 1269 | { | |
| 1270 | return V IRPManager .STD_REGIS TRY_DELETE (identity, registryI d, id); | |
| 1271 | } | |
| 1272 | ||
| 1273 | [O perationCo ntract] | |
| 1274 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_RE GISTRY_GET ?identity= {identity} ®istryI d={registr yId}&id={i d}")] | |
| 1275 | pu blic STD_R EGISTRY ST D_REGISTRY _GET_XML(s tring iden tity, int registryId , int id) | |
| 1276 | { | |
| 1277 | return t his.STD_RE GISTRY_GET (identity, registryI d, id); | |
| 1278 | } | |
| 1279 | ||
| 1280 | [O perationCo ntract] | |
| 1281 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_RE GISTRY_SAV E?identity ={identity }®istry Id={regist ryId}")] | |
| 1282 | pu blic int S TD_REGISTR Y_SAVE_XML (string id entity, in t registry Id, STD_RE GISTRY obj Save) | |
| 1283 | { | |
| 1284 | return t his.STD_RE GISTRY_SAV E(identity , registry Id, objSav e); | |
| 1285 | } | |
| 1286 | ||
| 1287 | [O perationCo ntract] | |
| 1288 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_RE GISTRY_DEL ETE?identi ty={identi ty}®ist ryId={regi stryId}&id ={id}")] | |
| 1289 | pu blic Boole an STD_REG ISTRY_DELE TE_XML(str ing identi ty, int re gistryId, int id) | |
| 1290 | { | |
| 1291 | return t his.STD_RE GISTRY_DEL ETE(identi ty, regist ryId, id); | |
| 1292 | } | |
| 1293 | ||
| 1294 | [O perationCo ntract] | |
| 1295 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ REGISTRY_G ET?identit y={identit y}®istr yId={regis tryId}&id= {id}")] | |
| 1296 | pu blic STD_R EGISTRY ST D_REGISTRY _GET_JSON( string ide ntity, int registryI d, int id) | |
| 1297 | { | |
| 1298 | return t his.STD_RE GISTRY_GET (identity, registryI d, id); | |
| 1299 | } | |
| 1300 | ||
| 1301 | [O perationCo ntract] | |
| 1302 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ REGISTRY_S AVE?identi ty={identi ty}®ist ryId={regi stryId}")] | |
| 1303 | pu blic int S TD_REGISTR Y_SAVE_JSO N(string i dentity, i nt registr yId, STD_R EGISTRY ob jSave) | |
| 1304 | { | |
| 1305 | return t his.STD_RE GISTRY_SAV E(identity , registry Id, objSav e); | |
| 1306 | } | |
| 1307 | ||
| 1308 | [O perationCo ntract] | |
| 1309 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ REGISTRY_D ELETE?iden tity={iden tity}®i stryId={re gistryId}& id={id}")] | |
| 1310 | pu blic Boole an STD_REG ISTRY_DELE TE_JSON(st ring ident ity, int r egistryId, int id) | |
| 1311 | { | |
| 1312 | return t his.STD_RE GISTRY_DEL ETE(identi ty, regist ryId, id); | |
| 1313 | } | |
| 1314 | ||
| 1315 | [W ebMethod] | |
| 1316 | pu blic STD_R EGISTRY ST D_REGISTRY _GET_COMPL ETE(string identity, int regis tryId, int id) | |
| 1317 | { | |
| 1318 | return V IRPManager .STD_REGIS TRY_GET_CO MPLETE(ide ntity, reg istryId, i d); | |
| 1319 | } | |
| 1320 | ||
| 1321 | [W ebMethod] | |
| 1322 | pu blic STD_R EGISTRY ST D_REGISTRY _GET_SYSTE M() | |
| 1323 | { | |
| 1324 | return V IRPManager .STD_REGIS TRY_GET_SY STEM(); | |
| 1325 | } | |
| 1326 | ||
| 1327 | [W ebMethod] | |
| 1328 | pu blic List< STD_REGIST RY> STD_RE GISTRY_GET _ALL_BY_US ER(string identity, int regist ryId) | |
| 1329 | { | |
| 1330 | return V IRPManager .STD_REGIS TRY_GET_AL L_BY_USER( identity, registryId ); | |
| 1331 | } | |
| 1332 | ||
| 1333 | [W ebMethod] | |
| 1334 | pu blic List< STD_REGIST RY> STD_RE GISTRY_GET _ALL_NON_S YSTEM() | |
| 1335 | { | |
| 1336 | return V IRPManager .STD_REGIS TRY_GET_AL L_NON_SYST EM(); | |
| 1337 | } | |
| 1338 | ||
| 1339 | [W ebMethod] | |
| 1340 | pu blic List< STD_REGIST RY> STD_RE GISTRY_GET _ALL_NON_S YSTEM_BY_U SER(string identity, int regis tryId) | |
| 1341 | { | |
| 1342 | return V IRPManager .STD_REGIS TRY_GET_AL L_NON_SYST EM_BY_USER (identity, registryI d); | |
| 1343 | } | |
| 1344 | ||
| 1345 | [O perationCo ntract] | |
| 1346 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_RE GISTRY_GET _COMPLETE? identity={ identity}& registryId ={registry Id}&id={id }")] | |
| 1347 | pu blic STD_R EGISTRY ST D_REGISTRY _GET_COMPL ETE_XML(st ring ident ity, int r egistryId, int id) | |
| 1348 | { | |
| 1349 | return t his.STD_RE GISTRY_GET _COMPLETE( identity, registryId , id); | |
| 1350 | } | |
| 1351 | ||
| 1352 | [O perationCo ntract] | |
| 1353 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_RE GISTRY_GET _SYSTEM")] | |
| 1354 | pu blic STD_R EGISTRY ST D_REGISTRY _GET_SYSTE M_XML() | |
| 1355 | { | |
| 1356 | return t his.STD_RE GISTRY_GET _SYSTEM(); | |
| 1357 | } | |
| 1358 | ||
| 1359 | [O perationCo ntract] | |
| 1360 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_RE GISTRY_GET _ALL_BY_US ER?identit y={identit y}®istr yId={regis tryId}")] | |
| 1361 | pu blic List< STD_REGIST RY> STD_RE GISTRY_GET _ALL_BY_US ER_XML(str ing identi ty, int re gistryId) | |
| 1362 | { | |
| 1363 | return t his.STD_RE GISTRY_GET _ALL_BY_US ER(identit y, registr yId); | |
| 1364 | } | |
| 1365 | ||
| 1366 | [O perationCo ntract] | |
| 1367 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_RE GISTRY_GET _ALL_NON_S YSTEM")] | |
| 1368 | pu blic List< STD_REGIST RY> STD_RE GISTRY_GET _ALL_NON_S YSTEM_XML( ) | |
| 1369 | { | |
| 1370 | return t his.STD_RE GISTRY_GET _ALL_NON_S YSTEM(); | |
| 1371 | } | |
| 1372 | ||
| 1373 | [O perationCo ntract] | |
| 1374 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_RE GISTRY_GET _ALL_NON_S YSTEM_BY_U SER?identi ty={identi ty}®ist ryId={regi stryId}")] | |
| 1375 | pu blic List< STD_REGIST RY> STD_RE GISTRY_GET _ALL_NON_S YSTEM_BY_U SER_XML(st ring ident ity, int r egistryId) | |
| 1376 | { | |
| 1377 | return t his.STD_RE GISTRY_GET _ALL_NON_S YSTEM_BY_U SER(identi ty, regist ryId); | |
| 1378 | } | |
| 1379 | ||
| 1380 | [O perationCo ntract] | |
| 1381 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ REGISTRY_G ET_COMPLET E?identity ={identity }®istry Id={regist ryId}&id={ id}")] | |
| 1382 | pu blic STD_R EGISTRY ST D_REGISTRY _GET_COMPL ETE_JSON(s tring iden tity, int registryId , int id) | |
| 1383 | { | |
| 1384 | return t his.STD_RE GISTRY_GET _COMPLETE( identity, registryId , id); | |
| 1385 | } | |
| 1386 | ||
| 1387 | [O perationCo ntract] | |
| 1388 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ REGISTRY_G ET_SYSTEM" )] | |
| 1389 | pu blic STD_R EGISTRY ST D_REGISTRY _GET_SYSTE M_JSON() | |
| 1390 | { | |
| 1391 | return t his.STD_RE GISTRY_GET _SYSTEM(); | |
| 1392 | } | |
| 1393 | ||
| 1394 | [O perationCo ntract] | |
| 1395 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ REGISTRY_G ET_ALL_BY_ USER?ident ity={ident ity}®is tryId={reg istryId}") ] | |
| 1396 | pu blic List< STD_REGIST RY> STD_RE GISTRY_GET _ALL_BY_US ER_JSON(st ring ident ity, int r egistryId) | |
| 1397 | { | |
| 1398 | return t his.STD_RE GISTRY_GET _ALL_BY_US ER(identit y, registr yId); | |
| 1399 | } | |
| 1400 | ||
| 1401 | [O perationCo ntract] | |
| 1402 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ REGISTRY_G ET_ALL_NON _SYSTEM")] | |
| 1403 | pu blic List< STD_REGIST RY> STD_RE GISTRY_GET _ALL_NON_S YSTEM_JSON () | |
| 1404 | { | |
| 1405 | return t his.STD_RE GISTRY_GET _ALL_NON_S YSTEM(); | |
| 1406 | } | |
| 1407 | ||
| 1408 | [O perationCo ntract] | |
| 1409 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ REGISTRY_G ET_ALL_NON _SYSTEM_BY _USER?iden tity={iden tity}®i stryId={re gistryId}" )] | |
| 1410 | pu blic List< STD_REGIST RY> STD_RE GISTRY_GET _ALL_NON_S YSTEM_BY_U SER_JSON(s tring iden tity, int registryId ) | |
| 1411 | { | |
| 1412 | return t his.STD_RE GISTRY_GET _ALL_NON_S YSTEM_BY_U SER(identi ty, regist ryId); | |
| 1413 | } | |
| 1414 | ||
| 1415 | #e ndregion | |
| 1416 | ||
| 1417 | #r egion STD_ ROLE | |
| 1418 | ||
| 1419 | [W ebMethod] | |
| 1420 | pu blic STD_R OLE STD_RO LE_GET(str ing identi ty, int re gistryId, int id) | |
| 1421 | { | |
| 1422 | return V IRPManager .STD_ROLE_ GET(identi ty, regist ryId, id); | |
| 1423 | } | |
| 1424 | ||
| 1425 | [O perationCo ntract] | |
| 1426 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_RO LE_GET?ide ntity={ide ntity}® istryId={r egistryId} &id={id}") ] | |
| 1427 | pu blic STD_R OLE STD_RO LE_GET_XML (string id entity, in t registry Id, int id ) | |
| 1428 | { | |
| 1429 | return t his.STD_RO LE_GET(ide ntity, reg istryId, i d); | |
| 1430 | } | |
| 1431 | ||
| 1432 | [O perationCo ntract] | |
| 1433 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ ROLE_GET?i dentity={i dentity}&r egistryId= {registryI d}&id={id} ")] | |
| 1434 | pu blic STD_R OLE STD_RO LE_GET_JSO N(string i dentity, i nt registr yId, int i d) | |
| 1435 | { | |
| 1436 | return t his.STD_RO LE_GET(ide ntity, reg istryId, i d); | |
| 1437 | } | |
| 1438 | ||
| 1439 | [W ebMethod] | |
| 1440 | pu blic List< STD_ROLE> STD_ROLE_G ET_ALL_SYS TEM_ROLES( string ide ntity, int registryI d) | |
| 1441 | { | |
| 1442 | return V IRPManager .STD_ROLE_ GET_ALL_SY STEM_ROLES (identity, registryI d); | |
| 1443 | } | |
| 1444 | ||
| 1445 | [W ebMethod] | |
| 1446 | pu blic List< STD_ROLE> STD_ROLE_G ET_ALL_REG ISTRY_ROLE S(string i dentity, i nt registr yId) | |
| 1447 | { | |
| 1448 | return V IRPManager .STD_ROLE_ GET_ALL_RE GISTRY_ROL ES(identit y, registr yId); | |
| 1449 | } | |
| 1450 | ||
| 1451 | [W ebMethod] | |
| 1452 | pu blic List< STD_ROLE> STD_ROLE_G ET_ALL_BY_ USER_REGIS TRY(string identity, int regis tryId) | |
| 1453 | { | |
| 1454 | return V IRPManager .STD_ROLE_ GET_ALL_BY _USER_REGI STRY(ident ity, regis tryId); | |
| 1455 | } | |
| 1456 | ||
| 1457 | [O perationCo ntract] | |
| 1458 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_RO LE_GET_ALL _SYSTEM_RO LES?identi ty={identi ty}®ist ryId={regi stryId}")] | |
| 1459 | pu blic List< STD_ROLE> STD_ROLE_G ET_ALL_SYS TEM_ROLES_ XML(string identity, int regis tryId) | |
| 1460 | { | |
| 1461 | return t his.STD_RO LE_GET_ALL _SYSTEM_RO LES(identi ty, regist ryId); | |
| 1462 | } | |
| 1463 | ||
| 1464 | [O perationCo ntract] | |
| 1465 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_RO LE_GET_ALL _REGISTRY_ ROLES?iden tity={iden tity}®i stryId={re gistryId}" )] | |
| 1466 | pu blic List< STD_ROLE> STD_ROLE_G ET_ALL_REG ISTRY_ROLE S_XML(stri ng identit y, int reg istryId) | |
| 1467 | { | |
| 1468 | return t his.STD_RO LE_GET_ALL _REGISTRY_ ROLES(iden tity, regi stryId); | |
| 1469 | } | |
| 1470 | ||
| 1471 | [O perationCo ntract] | |
| 1472 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_RO LE_GET_ALL _BY_USER_R EGISTRY?id entity={id entity}&re gistryId={ registryId }")] | |
| 1473 | pu blic List< STD_ROLE> STD_ROLE_G ET_ALL_BY_ USER_REGIS TRY_XML(st ring ident ity, int r egistryId) | |
| 1474 | { | |
| 1475 | return t his.STD_RO LE_GET_ALL _BY_USER_R EGISTRY(id entity, re gistryId); | |
| 1476 | } | |
| 1477 | ||
| 1478 | [O perationCo ntract] | |
| 1479 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ ROLE_GET_A LL_SYSTEM_ ROLES?iden tity={iden tity}®i stryId={re gistryId}" )] | |
| 1480 | pu blic List< STD_ROLE> STD_ROLE_G ET_ALL_SYS TEM_ROLES_ JSON(strin g identity , int regi stryId) | |
| 1481 | { | |
| 1482 | return t his.STD_RO LE_GET_ALL _SYSTEM_RO LES(identi ty, regist ryId); | |
| 1483 | } | |
| 1484 | ||
| 1485 | [O perationCo ntract] | |
| 1486 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ ROLE_GET_A LL_REGISTR Y_ROLES?id entity={id entity}&re gistryId={ registryId }")] | |
| 1487 | pu blic List< STD_ROLE> STD_ROLE_G ET_ALL_REG ISTRY_ROLE S_JSON(str ing identi ty, int re gistryId) | |
| 1488 | { | |
| 1489 | return t his.STD_RO LE_GET_ALL _REGISTRY_ ROLES(iden tity, regi stryId); | |
| 1490 | } | |
| 1491 | ||
| 1492 | [O perationCo ntract] | |
| 1493 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ ROLE_GET_A LL_BY_USER _REGISTRY? identity={ identity}& registryId ={registry Id}")] | |
| 1494 | pu blic List< STD_ROLE> STD_ROLE_G ET_ALL_BY_ USER_REGIS TRY_JSON(s tring iden tity, int registryId ) | |
| 1495 | { | |
| 1496 | return t his.STD_RO LE_GET_ALL _BY_USER_R EGISTRY(id entity, re gistryId); | |
| 1497 | } | |
| 1498 | ||
| 1499 | #e ndregion | |
| 1500 | ||
| 1501 | #r egion STD_ SURVEY_TYP E | |
| 1502 | ||
| 1503 | [W ebMethod] | |
| 1504 | pu blic STD_S URVEY_TYPE STD_SURVE Y_TYPE_GET (string id entity, in t registry Id, int id ) | |
| 1505 | { | |
| 1506 | return V IRPManager .STD_SURVE Y_TYPE_GET (identity, registryI d, id); | |
| 1507 | } | |
| 1508 | ||
| 1509 | [W ebMethod] | |
| 1510 | pu blic int S TD_SURVEY_ TYPE_SAVE( string ide ntity, int registryI d, STD_SUR VEY_TYPE o bjSave) | |
| 1511 | { | |
| 1512 | return V IRPManager .STD_SURVE Y_TYPE_SAV E(identity , registry Id, objSav e); | |
| 1513 | } | |
| 1514 | ||
| 1515 | [W ebMethod] | |
| 1516 | pu blic Boole an STD_SUR VEY_TYPE_D ELETE(stri ng identit y, int reg istryId, i nt id) | |
| 1517 | { | |
| 1518 | return V IRPManager .STD_SURVE Y_TYPE_DEL ETE(identi ty, regist ryId, id); | |
| 1519 | } | |
| 1520 | ||
| 1521 | [O perationCo ntract] | |
| 1522 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_SU RVEY_TYPE_ GET?identi ty={identi ty}®ist ryId={regi stryId}&id ={id}")] | |
| 1523 | pu blic STD_S URVEY_TYPE STD_SURVE Y_TYPE_GET _XML(strin g identity , int regi stryId, in t id) | |
| 1524 | { | |
| 1525 | return t his.STD_SU RVEY_TYPE_ GET(identi ty, regist ryId, id); | |
| 1526 | } | |
| 1527 | ||
| 1528 | [O perationCo ntract] | |
| 1529 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_SU RVEY_TYPE_ SAVE?ident ity={ident ity}®is tryId={reg istryId}") ] | |
| 1530 | pu blic int S TD_SURVEY_ TYPE_SAVE_ XML(string identity, int regis tryId, STD _SURVEY_TY PE objSave ) | |
| 1531 | { | |
| 1532 | return t his.STD_SU RVEY_TYPE_ SAVE(ident ity, regis tryId, obj Save); | |
| 1533 | } | |
| 1534 | ||
| 1535 | [O perationCo ntract] | |
| 1536 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_SU RVEY_TYPE_ DELETE?ide ntity={ide ntity}® istryId={r egistryId} &id={id}") ] | |
| 1537 | pu blic Boole an STD_SUR VEY_TYPE_D ELETE_XML( string ide ntity, int registryI d, int id) | |
| 1538 | { | |
| 1539 | return t his.STD_SU RVEY_TYPE_ DELETE(ide ntity, reg istryId, i d); | |
| 1540 | } | |
| 1541 | ||
| 1542 | [O perationCo ntract] | |
| 1543 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ SURVEY_TYP E_GET?iden tity={iden tity}®i stryId={re gistryId}& id={id}")] | |
| 1544 | pu blic STD_S URVEY_TYPE STD_SURVE Y_TYPE_GET _JSON(stri ng identit y, int reg istryId, i nt id) | |
| 1545 | { | |
| 1546 | return t his.STD_SU RVEY_TYPE_ GET(identi ty, regist ryId, id); | |
| 1547 | } | |
| 1548 | ||
| 1549 | [O perationCo ntract] | |
| 1550 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ SURVEY_TYP E_SAVE?ide ntity={ide ntity}® istryId={r egistryId} ")] | |
| 1551 | pu blic int S TD_SURVEY_ TYPE_SAVE_ JSON(strin g identity , int regi stryId, ST D_SURVEY_T YPE objSav e) | |
| 1552 | { | |
| 1553 | return t his.STD_SU RVEY_TYPE_ SAVE(ident ity, regis tryId, obj Save); | |
| 1554 | } | |
| 1555 | ||
| 1556 | [O perationCo ntract] | |
| 1557 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ SURVEY_TYP E_DELETE?i dentity={i dentity}&r egistryId= {registryI d}&id={id} ")] | |
| 1558 | pu blic Boole an STD_SUR VEY_TYPE_D ELETE_JSON (string id entity, in t registry Id, int id ) | |
| 1559 | { | |
| 1560 | return t his.STD_SU RVEY_TYPE_ DELETE(ide ntity, reg istryId, i d); | |
| 1561 | } | |
| 1562 | ||
| 1563 | [W ebMethod] | |
| 1564 | pu blic List< STD_SURVEY _TYPE> STD _SURVEY_TY PE_GET_ALL _BY_REGIST RY(string identity, int regist ryId) | |
| 1565 | { | |
| 1566 | return V IRPManager .STD_SURVE Y_TYPE_GET _ALL_BY_RE GISTRY(ide ntity, reg istryId); | |
| 1567 | } | |
| 1568 | ||
| 1569 | [O perationCo ntract] | |
| 1570 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_SU RVEY_TYPE_ GET_ALL_BY _REGISTRY? identity={ identity}& registryId ={registry Id}")] | |
| 1571 | pu blic List< STD_SURVEY _TYPE> STD _SURVEY_TY PE_GET_ALL _BY_REGIST RY_XML(str ing identi ty, int re gistryId) | |
| 1572 | { | |
| 1573 | return t his.STD_SU RVEY_TYPE_ GET_ALL_BY _REGISTRY( identity, registryId ); | |
| 1574 | } | |
| 1575 | ||
| 1576 | [O perationCo ntract] | |
| 1577 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ SURVEY_TYP E_GET_ALL_ BY_REGISTR Y?identity ={identity }®istry Id={regist ryId}")] | |
| 1578 | pu blic List< STD_SURVEY _TYPE> STD _SURVEY_TY PE_GET_ALL _BY_REGIST RY_JSON(st ring ident ity, int r egistryId) | |
| 1579 | { | |
| 1580 | return t his.STD_SU RVEY_TYPE_ GET_ALL_BY _REGISTRY( identity, registryId ); | |
| 1581 | } | |
| 1582 | ||
| 1583 | #e ndregion | |
| 1584 | ||
| 1585 | #r egion STD_ WEB_PAGES | |
| 1586 | ||
| 1587 | [W ebMethod] | |
| 1588 | pu blic STD_W EB_PAGES S TD_WEB_PAG ES_GET(str ing identi ty, int re gistryId, int id) | |
| 1589 | { | |
| 1590 | return V IRPManager .STD_WEB_P AGES_GET(i dentity, r egistryId, id); | |
| 1591 | } | |
| 1592 | ||
| 1593 | [W ebMethod] | |
| 1594 | pu blic List< STD_WEB_PA GES> STD_W EB_PAGES_G ET_ALL(str ing identi ty, int re gistryId) | |
| 1595 | { | |
| 1596 | return V IRPManager .STD_WEB_P AGES_GET_A LL(identit y, registr yId); | |
| 1597 | } | |
| 1598 | ||
| 1599 | [W ebMethod] | |
| 1600 | pu blic int S TD_WEB_PAG ES_SAVE(st ring ident ity, int r egistryId, STD_WEB_P AGES objSa ve) | |
| 1601 | { | |
| 1602 | return V IRPManager .STD_WEB_P AGES_SAVE( identity, registryId , objSave) ; | |
| 1603 | } | |
| 1604 | ||
| 1605 | [W ebMethod] | |
| 1606 | pu blic Boole an STD_WEB _PAGES_DEL ETE(string identity, int regis tryId, int id) | |
| 1607 | { | |
| 1608 | return V IRPManager .STD_WEB_P AGES_DELET E(identity , registry Id, id); | |
| 1609 | } | |
| 1610 | ||
| 1611 | [O perationCo ntract] | |
| 1612 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_WE B_PAGES_GE T?identity ={identity }®istry Id={regist ryId}&id={ id}")] | |
| 1613 | pu blic STD_W EB_PAGES S TD_WEB_PAG ES_GET_XML (string id entity, in t registry Id, int id ) | |
| 1614 | { | |
| 1615 | return t his.STD_WE B_PAGES_GE T(identity , registry Id, id); | |
| 1616 | } | |
| 1617 | ||
| 1618 | [O perationCo ntract] | |
| 1619 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_WE B_PAGES_GE T_ALL?iden tity={iden tity}®i stryId={re gistryId}" )] | |
| 1620 | pu blic List< STD_WEB_PA GES> STD_W EB_PAGES_G ET_ALL_XML (string id entity, in t registry Id) | |
| 1621 | { | |
| 1622 | return t his.STD_WE B_PAGES_GE T_ALL(iden tity, regi stryId); | |
| 1623 | } | |
| 1624 | ||
| 1625 | [O perationCo ntract] | |
| 1626 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_WE B_PAGES_SA VE?identit y={identit y}®istr yId={regis tryId}")] | |
| 1627 | pu blic int S TD_WEB_PAG ES_SAVE_XM L(string i dentity, i nt registr yId, STD_W EB_PAGES o bjSave) | |
| 1628 | { | |
| 1629 | return t his.STD_WE B_PAGES_SA VE(identit y, registr yId, objSa ve); | |
| 1630 | } | |
| 1631 | ||
| 1632 | [O perationCo ntract] | |
| 1633 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_WE B_PAGES_DE LETE?ident ity={ident ity}®is tryId={reg istryId}&i d={id}")] | |
| 1634 | pu blic Boole an STD_WEB _PAGES_DEL ETE_XML(st ring ident ity, int r egistryId, int id) | |
| 1635 | { | |
| 1636 | return t his.STD_WE B_PAGES_DE LETE(ident ity, regis tryId, id) ; | |
| 1637 | } | |
| 1638 | ||
| 1639 | [O perationCo ntract] | |
| 1640 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ WEB_PAGES_ GET?identi ty={identi ty}®ist ryId={regi stryId}&id ={id}")] | |
| 1641 | pu blic STD_W EB_PAGES S TD_WEB_PAG ES_GET_JSO N(string i dentity, i nt registr yId, int i d) | |
| 1642 | { | |
| 1643 | return t his.STD_WE B_PAGES_GE T(identity , registry Id, id); | |
| 1644 | } | |
| 1645 | ||
| 1646 | [O perationCo ntract] | |
| 1647 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ WEB_PAGES_ GET_ALL?id entity={id entity}&re gistryId={ registryId }")] | |
| 1648 | pu blic List< STD_WEB_PA GES> STD_W EB_PAGES_G ET_ALL_JSO N(string i dentity, i nt registr yId) | |
| 1649 | { | |
| 1650 | return t his.STD_WE B_PAGES_GE T_ALL(iden tity, regi stryId); | |
| 1651 | } | |
| 1652 | ||
| 1653 | [O perationCo ntract] | |
| 1654 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ WEB_PAGES_ SAVE?ident ity={ident ity}®is tryId={reg istryId}") ] | |
| 1655 | pu blic int S TD_WEB_PAG ES_SAVE_JS ON(string identity, int regist ryId, STD_ WEB_PAGES objSave) | |
| 1656 | { | |
| 1657 | return t his.STD_WE B_PAGES_SA VE(identit y, registr yId, objSa ve); | |
| 1658 | } | |
| 1659 | ||
| 1660 | [O perationCo ntract] | |
| 1661 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ WEB_PAGES_ DELETE?ide ntity={ide ntity}® istryId={r egistryId} &id={id}") ] | |
| 1662 | pu blic Boole an STD_WEB _PAGES_DEL ETE_JSON(s tring iden tity, int registryId , int id) | |
| 1663 | { | |
| 1664 | return t his.STD_WE B_PAGES_DE LETE(ident ity, regis tryId, id) ; | |
| 1665 | } | |
| 1666 | ||
| 1667 | #e ndregion | |
| 1668 | ||
| 1669 | #r egion STD_ WKFACTIVIT YSTS | |
| 1670 | ||
| 1671 | [W ebMethod] | |
| 1672 | pu blic STD_W KFACTIVITY STS STD_WK FACTIVITYS TS_GET(str ing identi ty, int re gistryId, int id) | |
| 1673 | { | |
| 1674 | return V IRPManager .STD_WKFAC TIVITYSTS_ GET(identi ty, regist ryId, id); | |
| 1675 | } | |
| 1676 | ||
| 1677 | [O perationCo ntract] | |
| 1678 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_WK FACTIVITYS TS_GET?ide ntity={ide ntity}® istryId={r egistryId} &id={id}") ] | |
| 1679 | pu blic STD_W KFACTIVITY STS STD_WK FACTIVITYS TS_GET_XML (string id entity, in t registry Id, int id ) | |
| 1680 | { | |
| 1681 | return t his.STD_WK FACTIVITYS TS_GET(ide ntity, reg istryId, i d); | |
| 1682 | } | |
| 1683 | ||
| 1684 | [O perationCo ntract] | |
| 1685 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ WKFACTIVIT YSTS_GET?i dentity={i dentity}&r egistryId= {registryI d}&id={id} ")] | |
| 1686 | pu blic STD_W KFACTIVITY STS STD_WK FACTIVITYS TS_GET_JSO N(string i dentity, i nt registr yId, int i d) | |
| 1687 | { | |
| 1688 | return t his.STD_WK FACTIVITYS TS_GET(ide ntity, reg istryId, i d); | |
| 1689 | } | |
| 1690 | ||
| 1691 | [W ebMethod] | |
| 1692 | pu blic STD_W KFACTIVITY STS STD_WK FACTIVITYS TS_GET_BY_ CODE(strin g identity , int regi stryId, st ring code) | |
| 1693 | { | |
| 1694 | return V IRPManager .STD_WKFAC TIVITYSTS_ GET_BY_COD E(identity , registry Id, code); | |
| 1695 | } | |
| 1696 | ||
| 1697 | [O perationCo ntract] | |
| 1698 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_WK FACTIVITYS TS_GET_BY_ CODE?ident ity={ident ity}®is tryId={reg istryId}&c ode={code} ")] | |
| 1699 | pu blic STD_W KFACTIVITY STS STD_WK FACTIVITYS TS_GET_BY_ CODE_XML(s tring iden tity, int registryId , string c ode) | |
| 1700 | { | |
| 1701 | return t his.STD_WK FACTIVITYS TS_GET_BY_ CODE(ident ity, regis tryId, cod e); | |
| 1702 | } | |
| 1703 | ||
| 1704 | [O perationCo ntract] | |
| 1705 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ WKFACTIVIT YSTS_GET_B Y_CODE?ide ntity={ide ntity}® istryId={r egistryId} &code={cod e}")] | |
| 1706 | pu blic STD_W KFACTIVITY STS STD_WK FACTIVITYS TS_GET_BY_ CODE_JSON( string ide ntity, int registryI d, string code) | |
| 1707 | { | |
| 1708 | return t his.STD_WK FACTIVITYS TS_GET_BY_ CODE(ident ity, regis tryId, cod e); | |
| 1709 | } | |
| 1710 | ||
| 1711 | #e ndregion | |
| 1712 | ||
| 1713 | #r egion STD_ WKFACTIVIT YTYPE | |
| 1714 | ||
| 1715 | [W ebMethod] | |
| 1716 | pu blic STD_W KFACTIVITY TYPE STD_W KFACTIVITY TYPE_GET(s tring iden tity, int registryId , int id) | |
| 1717 | { | |
| 1718 | return V IRPManager .STD_WKFAC TIVITYTYPE _GET(ident ity, regis tryId, id) ; | |
| 1719 | } | |
| 1720 | ||
| 1721 | [W ebMethod] | |
| 1722 | pu blic int S TD_WKFACTI VITYTYPE_S AVE(string identity, int regis tryId, STD _WKFACTIVI TYTYPE obj Save) | |
| 1723 | { | |
| 1724 | return V IRPManager .STD_WKFAC TIVITYTYPE _SAVE(iden tity, regi stryId, ob jSave); | |
| 1725 | } | |
| 1726 | ||
| 1727 | [W ebMethod] | |
| 1728 | pu blic Boole an STD_WKF ACTIVITYTY PE_DELETE( string ide ntity, int registryI d, int id) | |
| 1729 | { | |
| 1730 | return V IRPManager .STD_WKFAC TIVITYTYPE _DELETE(id entity, re gistryId, id); | |
| 1731 | } | |
| 1732 | ||
| 1733 | [O perationCo ntract] | |
| 1734 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_WK FACTIVITYT YPE_GET?id entity={id entity}&re gistryId={ registryId }&id={id}" )] | |
| 1735 | pu blic STD_W KFACTIVITY TYPE STD_W KFACTIVITY TYPE_GET_X ML(string identity, int regist ryId, int id) | |
| 1736 | { | |
| 1737 | return t his.STD_WK FACTIVITYT YPE_GET(id entity, re gistryId, id); | |
| 1738 | } | |
| 1739 | ||
| 1740 | [O perationCo ntract] | |
| 1741 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_WK FACTIVITYT YPE_SAVE?i dentity={i dentity}&r egistryId= {registryI d}")] | |
| 1742 | pu blic int S TD_WKFACTI VITYTYPE_S AVE_XML(st ring ident ity, int r egistryId, STD_WKFAC TIVITYTYPE objSave) | |
| 1743 | { | |
| 1744 | return t his.STD_WK FACTIVITYT YPE_SAVE(i dentity, r egistryId, objSave); | |
| 1745 | } | |
| 1746 | ||
| 1747 | [O perationCo ntract] | |
| 1748 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_WK FACTIVITYT YPE_DELETE ?identity= {identity} ®istryI d={registr yId}&id={i d}")] | |
| 1749 | pu blic Boole an STD_WKF ACTIVITYTY PE_DELETE_ XML(string identity, int regis tryId, int id) | |
| 1750 | { | |
| 1751 | return t his.STD_WK FACTIVITYT YPE_DELETE (identity, registryI d, id); | |
| 1752 | } | |
| 1753 | ||
| 1754 | [O perationCo ntract] | |
| 1755 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ WKFACTIVIT YTYPE_GET? identity={ identity}& registryId ={registry Id}&id={id }")] | |
| 1756 | pu blic STD_W KFACTIVITY TYPE STD_W KFACTIVITY TYPE_GET_J SON(string identity, int regis tryId, int id) | |
| 1757 | { | |
| 1758 | return t his.STD_WK FACTIVITYT YPE_GET(id entity, re gistryId, id); | |
| 1759 | } | |
| 1760 | ||
| 1761 | [O perationCo ntract] | |
| 1762 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ WKFACTIVIT YTYPE_SAVE ?identity= {identity} ®istryI d={registr yId}")] | |
| 1763 | pu blic int S TD_WKFACTI VITYTYPE_S AVE_JSON(s tring iden tity, int registryId , STD_WKFA CTIVITYTYP E objSave) | |
| 1764 | { | |
| 1765 | return t his.STD_WK FACTIVITYT YPE_SAVE(i dentity, r egistryId, objSave); | |
| 1766 | } | |
| 1767 | ||
| 1768 | [O perationCo ntract] | |
| 1769 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ WKFACTIVIT YTYPE_DELE TE?identit y={identit y}®istr yId={regis tryId}&id= {id}")] | |
| 1770 | pu blic Boole an STD_WKF ACTIVITYTY PE_DELETE_ JSON(strin g identity , int regi stryId, in t id) | |
| 1771 | { | |
| 1772 | return t his.STD_WK FACTIVITYT YPE_DELETE (identity, registryI d, id); | |
| 1773 | } | |
| 1774 | ||
| 1775 | [W ebMethod] | |
| 1776 | pu blic List< STD_WKFACT IVITYTYPE> STD_WKFAC TIVITYTYPE _GET_ALL_B Y_REGISTRY (string id entity, in t registry Id) | |
| 1777 | { | |
| 1778 | return V IRPManager .STD_WKFAC TIVITYTYPE _GET_ALL_B Y_REGISTRY (identity, registryI d); | |
| 1779 | } | |
| 1780 | ||
| 1781 | [W ebMethod] | |
| 1782 | pu blic List< STD_WKFACT IVITYTYPE> STD_WKFAC TIVITYTYPE _GET_ALL_B Y_WORKSTRE AM(string identity, int regist ryId, int streamId) | |
| 1783 | { | |
| 1784 | return V IRPManager .STD_WKFAC TIVITYTYPE _GET_ALL_B Y_WORKSTRE AM(identit y, registr yId, strea mId); | |
| 1785 | } | |
| 1786 | ||
| 1787 | [O perationCo ntract] | |
| 1788 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_WK FACTIVITYT YPE_GET_AL L_BY_REGIS TRY?identi ty={identi ty}®ist ryId={regi stryId}")] | |
| 1789 | pu blic List< STD_WKFACT IVITYTYPE> STD_WKFAC TIVITYTYPE _GET_ALL_B Y_REGISTRY _XML(strin g identity , int regi stryId) | |
| 1790 | { | |
| 1791 | return t his.STD_WK FACTIVITYT YPE_GET_AL L_BY_REGIS TRY(identi ty, regist ryId); | |
| 1792 | } | |
| 1793 | ||
| 1794 | [O perationCo ntract] | |
| 1795 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_WK FACTIVITYT YPE_GET_AL L_BY_WORKS TREAM?iden tity={iden tity}®i stryId={re gistryId}& streamId={ streamId}" )] | |
| 1796 | pu blic List< STD_WKFACT IVITYTYPE> STD_WKFAC TIVITYTYPE _GET_ALL_B Y_WORKSTRE AM_XML(str ing identi ty, int re gistryId, int stream Id) | |
| 1797 | { | |
| 1798 | return t his.STD_WK FACTIVITYT YPE_GET_AL L_BY_WORKS TREAM(iden tity, regi stryId, st reamId); | |
| 1799 | } | |
| 1800 | ||
| 1801 | [O perationCo ntract] | |
| 1802 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ WKFACTIVIT YTYPE_GET_ ALL_BY_REG ISTRY?iden tity={iden tity}®i stryId={re gistryId}" )] | |
| 1803 | pu blic List< STD_WKFACT IVITYTYPE> STD_WKFAC TIVITYTYPE _GET_ALL_B Y_REGISTRY _JSON(stri ng identit y, int reg istryId) | |
| 1804 | { | |
| 1805 | return t his.STD_WK FACTIVITYT YPE_GET_AL L_BY_REGIS TRY(identi ty, regist ryId); | |
| 1806 | } | |
| 1807 | ||
| 1808 | [O perationCo ntract] | |
| 1809 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ WKFACTIVIT YTYPE_GET_ ALL_BY_WOR KSTREAM?id entity={id entity}&re gistryId={ registryId }&streamId ={streamId }")] | |
| 1810 | pu blic List< STD_WKFACT IVITYTYPE> STD_WKFAC TIVITYTYPE _GET_ALL_B Y_WORKSTRE AM_JSON(st ring ident ity, int r egistryId, int strea mId) | |
| 1811 | { | |
| 1812 | return t his.STD_WK FACTIVITYT YPE_GET_AL L_BY_WORKS TREAM(iden tity, regi stryId, st reamId); | |
| 1813 | } | |
| 1814 | ||
| 1815 | #e ndregion | |
| 1816 | ||
| 1817 | #r egion STD_ WKFCASESTS | |
| 1818 | ||
| 1819 | [W ebMethod] | |
| 1820 | pu blic STD_W KFCASESTS STD_WKFCAS ESTS_GET(s tring iden tity, int registryId , int id) | |
| 1821 | { | |
| 1822 | return V IRPManager .STD_WKFCA SESTS_GET( identity, registryId , id); | |
| 1823 | } | |
| 1824 | ||
| 1825 | [O perationCo ntract] | |
| 1826 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_WK FCASESTS_G ET?identit y={identit y}®istr yId={regis tryId}&id= {id}")] | |
| 1827 | pu blic STD_W KFCASESTS STD_WKFCAS ESTS_GET_X ML(string identity, int regist ryId, int id) | |
| 1828 | { | |
| 1829 | return t his.STD_WK FCASESTS_G ET(identit y, registr yId, id); | |
| 1830 | } | |
| 1831 | ||
| 1832 | [O perationCo ntract] | |
| 1833 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ WKFCASESTS _GET?ident ity={ident ity}®is tryId={reg istryId}&i d={id}")] | |
| 1834 | pu blic STD_W KFCASESTS STD_WKFCAS ESTS_GET_J SON(string identity, int regis tryId, int id) | |
| 1835 | { | |
| 1836 | return t his.STD_WK FCASESTS_G ET(identit y, registr yId, id); | |
| 1837 | } | |
| 1838 | ||
| 1839 | [W ebMethod] | |
| 1840 | pu blic STD_W KFCASESTS STD_WKFCAS ESTS_GET_B Y_CODE(str ing identi ty, int re gistryId, string cod e) | |
| 1841 | { | |
| 1842 | return V IRPManager .STD_WKFCA SESTS_GET_ BY_CODE(id entity, re gistryId, code); | |
| 1843 | } | |
| 1844 | ||
| 1845 | [O perationCo ntract] | |
| 1846 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_WK FCASESTS_G ET_BY_CODE ?identity= {identity} ®istryI d={registr yId}&code= {code}")] | |
| 1847 | pu blic STD_W KFCASESTS STD_WKFCAS ESTS_GET_B Y_CODE_XML (string id entity, in t registry Id, string code) | |
| 1848 | { | |
| 1849 | return t his.STD_WK FCASESTS_G ET_BY_CODE (identity, registryI d, code); | |
| 1850 | } | |
| 1851 | ||
| 1852 | [O perationCo ntract] | |
| 1853 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ WKFCASESTS _GET_BY_CO DE?identit y={identit y}®istr yId={regis tryId}&cod e={code}") ] | |
| 1854 | pu blic STD_W KFCASESTS STD_WKFCAS ESTS_GET_B Y_CODE_JSO N(string i dentity, i nt registr yId, strin g code) | |
| 1855 | { | |
| 1856 | return t his.STD_WK FCASESTS_G ET_BY_CODE (identity, registryI d, code); | |
| 1857 | } | |
| 1858 | ||
| 1859 | #e ndregion | |
| 1860 | ||
| 1861 | #r egion STD_ WKFCASETYP E | |
| 1862 | ||
| 1863 | [W ebMethod] | |
| 1864 | pu blic STD_W KFCASETYPE STD_WKFCA SETYPE_GET (string id entity, in t registry Id, int id ) | |
| 1865 | { | |
| 1866 | return V IRPManager .STD_WKFCA SETYPE_GET (identity, registryI d, id); | |
| 1867 | } | |
| 1868 | ||
| 1869 | [W ebMethod] | |
| 1870 | pu blic int S TD_WKFCASE TYPE_SAVE( string ide ntity, int registryI d, STD_WKF CASETYPE o bjSave) | |
| 1871 | { | |
| 1872 | return V IRPManager .STD_WKFCA SETYPE_SAV E(identity , registry Id, objSav e); | |
| 1873 | } | |
| 1874 | ||
| 1875 | [W ebMethod] | |
| 1876 | pu blic Boole an STD_WKF CASETYPE_D ELETE(stri ng identit y, int reg istryId, i nt id) | |
| 1877 | { | |
| 1878 | return V IRPManager .STD_WKFCA SETYPE_DEL ETE(identi ty, regist ryId, id); | |
| 1879 | } | |
| 1880 | ||
| 1881 | [O perationCo ntract] | |
| 1882 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_WK FCASETYPE_ GET?identi ty={identi ty}®ist ryId={regi stryId}&id ={id}")] | |
| 1883 | pu blic STD_W KFCASETYPE STD_WKFCA SETYPE_GET _XML(strin g identity , int regi stryId, in t id) | |
| 1884 | { | |
| 1885 | return t his.STD_WK FCASETYPE_ GET(identi ty, regist ryId, id); | |
| 1886 | } | |
| 1887 | ||
| 1888 | [O perationCo ntract] | |
| 1889 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_WK FCASETYPE_ SAVE?ident ity={ident ity}®is tryId={reg istryId}") ] | |
| 1890 | pu blic int S TD_WKFCASE TYPE_SAVE_ XML(string identity, int regis tryId, STD _WKFCASETY PE objSave ) | |
| 1891 | { | |
| 1892 | return t his.STD_WK FCASETYPE_ SAVE(ident ity, regis tryId, obj Save); | |
| 1893 | } | |
| 1894 | ||
| 1895 | [O perationCo ntract] | |
| 1896 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_WK FCASETYPE_ DELETE?ide ntity={ide ntity}® istryId={r egistryId} &id={id}") ] | |
| 1897 | pu blic Boole an STD_WKF CASETYPE_D ELETE_XML( string ide ntity, int registryI d, int id) | |
| 1898 | { | |
| 1899 | return t his.STD_WK FCASETYPE_ DELETE(ide ntity, reg istryId, i d); | |
| 1900 | } | |
| 1901 | ||
| 1902 | [O perationCo ntract] | |
| 1903 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ WKFCASETYP E_GET?iden tity={iden tity}®i stryId={re gistryId}& id={id}")] | |
| 1904 | pu blic STD_W KFCASETYPE STD_WKFCA SETYPE_GET _JSON(stri ng identit y, int reg istryId, i nt id) | |
| 1905 | { | |
| 1906 | return t his.STD_WK FCASETYPE_ GET(identi ty, regist ryId, id); | |
| 1907 | } | |
| 1908 | ||
| 1909 | [O perationCo ntract] | |
| 1910 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ WKFCASETYP E_SAVE?ide ntity={ide ntity}® istryId={r egistryId} ")] | |
| 1911 | pu blic int S TD_WKFCASE TYPE_SAVE_ JSON(strin g identity , int regi stryId, ST D_WKFCASET YPE objSav e) | |
| 1912 | { | |
| 1913 | return t his.STD_WK FCASETYPE_ SAVE(ident ity, regis tryId, obj Save); | |
| 1914 | } | |
| 1915 | ||
| 1916 | [O perationCo ntract] | |
| 1917 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ WKFCASETYP E_DELETE?i dentity={i dentity}&r egistryId= {registryI d}&id={id} ")] | |
| 1918 | pu blic Boole an STD_WKF CASETYPE_D ELETE_JSON (string id entity, in t registry Id, int id ) | |
| 1919 | { | |
| 1920 | return t his.STD_WK FCASETYPE_ DELETE(ide ntity, reg istryId, i d); | |
| 1921 | } | |
| 1922 | ||
| 1923 | [W ebMethod] | |
| 1924 | pu blic List< STD_WKFCAS ETYPE> STD _WKFCASETY PE_GET_ALL _BY_REGIST RY(string identity, int regist ryId) | |
| 1925 | { | |
| 1926 | return V IRPManager .STD_WKFCA SETYPE_GET _ALL_BY_RE GISTRY(ide ntity, reg istryId); | |
| 1927 | } | |
| 1928 | ||
| 1929 | [O perationCo ntract] | |
| 1930 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/STD_WK FCASETYPE_ GET_ALL_BY _REGISTRY? identity={ identity}& registryId ={registry Id}")] | |
| 1931 | pu blic List< STD_WKFCAS ETYPE> STD _WKFCASETY PE_GET_ALL _BY_REGIST RY_XML(str ing identi ty, int re gistryId) | |
| 1932 | { | |
| 1933 | return t his.STD_WK FCASETYPE_ GET_ALL_BY _REGISTRY( identity, registryId ); | |
| 1934 | } | |
| 1935 | ||
| 1936 | [O perationCo ntract] | |
| 1937 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/STD_ WKFCASETYP E_GET_ALL_ BY_REGISTR Y?identity ={identity }®istry Id={regist ryId}")] | |
| 1938 | pu blic List< STD_WKFCAS ETYPE> STD _WKFCASETY PE_GET_ALL _BY_REGIST RY_JSON(st ring ident ity, int r egistryId) | |
| 1939 | { | |
| 1940 | return t his.STD_WK FCASETYPE_ GET_ALL_BY _REGISTRY( identity, registryId ); | |
| 1941 | } | |
| 1942 | ||
| 1943 | #e ndregion | |
| 1944 | ||
| 1945 | #r egion SURV EY_RESULTS | |
| 1946 | ||
| 1947 | [W ebMethod] | |
| 1948 | pu blic List< SURVEY_RES ULTS> SURV EY_RESULTS _GET_ALL_B Y_SURVEY(s tring iden tity, int registryId , int surv eyId) | |
| 1949 | { | |
| 1950 | return V IRPManager .SURVEY_RE SULTS_GET_ ALL_BY_SUR VEY(identi ty, regist ryId, surv eyId); | |
| 1951 | } | |
| 1952 | ||
| 1953 | [O perationCo ntract] | |
| 1954 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/SURVEY _RESULTS_G ET_ALL_BY_ SURVEY?ide ntity={ide ntity}® istryId={r egistryId} &surveyId= {surveyId} ")] | |
| 1955 | pu blic List< SURVEY_RES ULTS> SURV EY_RESULTS _GET_ALL_B Y_SURVEY_X ML(string identity, int regist ryId, int surveyId) | |
| 1956 | { | |
| 1957 | return t his.SURVEY _RESULTS_G ET_ALL_BY_ SURVEY(ide ntity, reg istryId, s urveyId); | |
| 1958 | } | |
| 1959 | ||
| 1960 | [O perationCo ntract] | |
| 1961 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/SURV EY_RESULTS _GET_ALL_B Y_SURVEY?i dentity={i dentity}&r egistryId= {registryI d}&surveyI d={surveyI d}")] | |
| 1962 | pu blic List< SURVEY_RES ULTS> SURV EY_RESULTS _GET_ALL_B Y_SURVEY_J SON(string identity, int regis tryId, int surveyId) | |
| 1963 | { | |
| 1964 | return t his.SURVEY _RESULTS_G ET_ALL_BY_ SURVEY(ide ntity, reg istryId, s urveyId); | |
| 1965 | } | |
| 1966 | ||
| 1967 | [W ebMethod] | |
| 1968 | pu blic Boole an SURVEY_ RESULTS_SA VE_ALL(str ing identi ty, int re gistryId, SURVEY_RES ULTS[] res ults) | |
| 1969 | { | |
| 1970 | return V IRPManager .SURVEY_RE SULTS_SAVE _ALL(ident ity, regis tryId, res ults); | |
| 1971 | } | |
| 1972 | ||
| 1973 | [O perationCo ntract] | |
| 1974 | [W ebInvoke(M ethod = "P OST", Resp onseFormat = WebMess ageFormat. Xml, UriTe mplate = " /Xml/SURVE Y_RESULTS_ SAVE_ALL?i dentity={i dentity}&r egistryId= {registryI d}&surveyI d={surveyI d}&results ={results} ")] | |
| 1975 | pu blic Boole an SURVEY_ RESULTS_SA VE_ALL_XML (string id entity, in t registry Id, SURVEY _RESULTS[] results) | |
| 1976 | { | |
| 1977 | return t his.SURVEY _RESULTS_S AVE_ALL(id entity, re gistryId, results); | |
| 1978 | } | |
| 1979 | ||
| 1980 | [O perationCo ntract] | |
| 1981 | [W ebInvoke(M ethod = "P OST", Resp onseFormat = WebMess ageFormat. Json, UriT emplate = "/Json/SUR VEY_RESULT S_SAVE_ALL ?identity= {identity} ®istryI d={registr yId}&surve yId={surve yId}&surve yId={surve yId}")] | |
| 1982 | pu blic Boole an SURVEY_ RESULTS_SA VE_ALL_JSO N(string i dentity, i nt registr yId, SURVE Y_RESULTS[ ] results) | |
| 1983 | { | |
| 1984 | return t his.SURVEY _RESULTS_S AVE_ALL(id entity, re gistryId, results); | |
| 1985 | } | |
| 1986 | ||
| 1987 | #e ndregion | |
| 1988 | ||
| 1989 | #r egion SURV EYS | |
| 1990 | ||
| 1991 | [W ebMethod] | |
| 1992 | pu blic SURVE YS SURVEYS _GET(strin g identity , int regi stryId, in t id) | |
| 1993 | { | |
| 1994 | return V IRPManager .SURVEYS_G ET(identit y, registr yId, id); | |
| 1995 | } | |
| 1996 | ||
| 1997 | [W ebMethod] | |
| 1998 | pu blic int S URVEYS_SAV E(string i dentity, i nt registr yId, SURVE YS objSave ) | |
| 1999 | { | |
| 2000 | return V IRPManager .SURVEYS_S AVE(identi ty, regist ryId, objS ave); | |
| 2001 | } | |
| 2002 | ||
| 2003 | [W ebMethod] | |
| 2004 | pu blic Boole an SURVEYS _DELETE(st ring ident ity, int r egistryId, int id) | |
| 2005 | { | |
| 2006 | return V IRPManager .SURVEYS_D ELETE(iden tity, regi stryId, id ); | |
| 2007 | } | |
| 2008 | ||
| 2009 | [O perationCo ntract] | |
| 2010 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/SURVEY S_GET?iden tity={iden tity}®i stryId={re gistryId}& id={id}")] | |
| 2011 | pu blic SURVE YS SURVEYS _GET_XML(s tring iden tity, int registryId , int id) | |
| 2012 | { | |
| 2013 | return t his.SURVEY S_GET(iden tity, regi stryId, id ); | |
| 2014 | } | |
| 2015 | ||
| 2016 | [O perationCo ntract] | |
| 2017 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/SURVEY S_SAVE?ide ntity={ide ntity}® istryId={r egistryId} ")] | |
| 2018 | pu blic int S URVEYS_SAV E_XML(stri ng identit y, int reg istryId, S URVEYS obj Save) | |
| 2019 | { | |
| 2020 | return t his.SURVEY S_SAVE(ide ntity, reg istryId, o bjSave); | |
| 2021 | } | |
| 2022 | ||
| 2023 | [O perationCo ntract] | |
| 2024 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/SURVEY S_DELETE?i dentity={i dentity}&r egistryId= {registryI d}&id={id} ")] | |
| 2025 | pu blic Boole an SURVEYS _DELETE_XM L(string i dentity, i nt registr yId, int i d) | |
| 2026 | { | |
| 2027 | return t his.SURVEY S_DELETE(i dentity, r egistryId, id); | |
| 2028 | } | |
| 2029 | ||
| 2030 | [O perationCo ntract] | |
| 2031 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/SURV EYS_GET?id entity={id entity}&re gistryId={ registryId }&id={id}" )] | |
| 2032 | pu blic SURVE YS SURVEYS _GET_JSON( string ide ntity, int registryI d, int id) | |
| 2033 | { | |
| 2034 | return t his.SURVEY S_GET(iden tity, regi stryId, id ); | |
| 2035 | } | |
| 2036 | ||
| 2037 | [O perationCo ntract] | |
| 2038 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/SURV EYS_SAVE?i dentity={i dentity}&r egistryId= {registryI d}")] | |
| 2039 | pu blic int S URVEYS_SAV E_JSON(str ing identi ty, int re gistryId, SURVEYS ob jSave) | |
| 2040 | { | |
| 2041 | return t his.SURVEY S_SAVE(ide ntity, reg istryId, o bjSave); | |
| 2042 | } | |
| 2043 | ||
| 2044 | [O perationCo ntract] | |
| 2045 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/SURV EYS_DELETE ?identity= {identity} ®istryI d={registr yId}&id={i d}")] | |
| 2046 | pu blic Boole an SURVEYS _DELETE_JS ON(string identity, int regist ryId, int id) | |
| 2047 | { | |
| 2048 | return t his.SURVEY S_DELETE(i dentity, r egistryId, id); | |
| 2049 | } | |
| 2050 | ||
| 2051 | [W ebMethod] | |
| 2052 | pu blic SURVE YS SURVEYS _GET_FOR_S URVEY(stri ng identit y, int reg istryId, i nt surveys Id) | |
| 2053 | { | |
| 2054 | return V IRPManager .SURVEYS_G ET_FOR_SUR VEY(identi ty, regist ryId, surv eysId); | |
| 2055 | } | |
| 2056 | ||
| 2057 | [O perationCo ntract] | |
| 2058 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/SURVEY S_GET_FOR_ SURVEY?ide ntity={ide ntity}® istryId={r egistryId} &surveysId ={surveysI d}")] | |
| 2059 | pu blic SURVE YS SURVEYS _GET_FOR_S URVEY_XML( string ide ntity, int registryI d, int sur veysId) | |
| 2060 | { | |
| 2061 | return t his.SURVEY S_GET_FOR_ SURVEY(ide ntity, reg istryId, s urveysId); | |
| 2062 | } | |
| 2063 | ||
| 2064 | [O perationCo ntract] | |
| 2065 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/SURV EYS_GET_FO R_SURVEY?i dentity={i dentity}&r egistryId= {registryI d}&surveys Id={survey sId}")] | |
| 2066 | pu blic SURVE YS SURVEYS _GET_FOR_S URVEY_JSON (string id entity, in t registry Id, int su rveysId) | |
| 2067 | { | |
| 2068 | return t his.SURVEY S_GET_FOR_ SURVEY(ide ntity, reg istryId, s urveysId); | |
| 2069 | } | |
| 2070 | ||
| 2071 | [W ebMethod] | |
| 2072 | pu blic List< SURVEYS> S URVEYS_GET _ALL_BY_RE GISTRY(str ing identi ty, int re gistryId) | |
| 2073 | { | |
| 2074 | return V IRPManager .SURVEYS_G ET_ALL_BY_ REGISTRY(i dentity, r egistryId) ; | |
| 2075 | } | |
| 2076 | ||
| 2077 | [O perationCo ntract] | |
| 2078 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/SURVEY S_GET_ALL_ BY_REGISTR Y?identity ={identity }®istry Id={regist ryId}")] | |
| 2079 | pu blic List< SURVEYS> S URVEYS_GET _ALL_BY_RE GISTRY_XML (string id entity, in t registry Id) | |
| 2080 | { | |
| 2081 | return t his.SURVEY S_GET_ALL_ BY_REGISTR Y(identity , registry Id); | |
| 2082 | } | |
| 2083 | ||
| 2084 | [O perationCo ntract] | |
| 2085 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/SURV EYS_GET_AL L_BY_REGIS TRY?identi ty={identi ty}®ist ryId={regi stryId}")] | |
| 2086 | pu blic List< SURVEYS> S URVEYS_GET _ALL_BY_RE GISTRY_JSO N(string i dentity, i nt registr yId) | |
| 2087 | { | |
| 2088 | return t his.SURVEY S_GET_ALL_ BY_REGISTR Y(identity , registry Id); | |
| 2089 | } | |
| 2090 | ||
| 2091 | #e ndregion | |
| 2092 | ||
| 2093 | #r egion USER _ROLES | |
| 2094 | ||
| 2095 | [W ebMethod] | |
| 2096 | pu blic USER_ ROLES USER _ROLES_GET _BY_USERID _ROLEID(st ring ident ity, int r egistryId, int userI d, int rol eId) | |
| 2097 | { | |
| 2098 | return V IRPManager .USER_ROLE S_GET_BY_U SERID_ROLE ID(identit y, registr yId, userI d, roleId) ; | |
| 2099 | } | |
| 2100 | ||
| 2101 | [W ebMethod] | |
| 2102 | pu blic List< string> US ER_ROLES_G ET_BY_REGI STRYID_USE RNAME(stri ng usernam e, int reg istryId) | |
| 2103 | { | |
| 2104 | return V IRPManager .USER_ROLE S_GET_BY_R EGISTRYID_ USERNAME(u sername, r egistryId) ; | |
| 2105 | } | |
| 2106 | ||
| 2107 | [W ebMethod] | |
| 2108 | pu blic USER_ ROLES USER _ROLES_GET _BY_USER_R OLE(string username, string ro lename) | |
| 2109 | { | |
| 2110 | return V IRPManager .USER_ROLE S_GET_BY_U SER_ROLE(u sername, r olename); | |
| 2111 | } | |
| 2112 | ||
| 2113 | [W ebMethod] | |
| 2114 | pu blic strin g[] USER_R OLES_GET_R OLES(strin g username ) | |
| 2115 | { | |
| 2116 | return V IRPManager .USER_ROLE S_GET_ROLE S(username ); | |
| 2117 | } | |
| 2118 | ||
| 2119 | [W ebMethod] | |
| 2120 | pu blic List< USER_ROLES > USER_ROL ES_GET_ALL _BY_USER(s tring iden tity, int registryId , int user Id) | |
| 2121 | { | |
| 2122 | return V IRPManager .USER_ROLE S_GET_ALL_ BY_USER(id entity, re gistryId, userId); | |
| 2123 | } | |
| 2124 | ||
| 2125 | [W ebMethod] | |
| 2126 | pu blic bool USER_ROLES _DELETE_BY _USER_REGI STRY(strin g identity , int regi stryId, in t userId, int stdReg istryId) | |
| 2127 | { | |
| 2128 | return V IRPManager .USER_ROLE S_DELETE_B Y_USER_REG ISTRY(iden tity, regi stryId, us erId, stdR egistryId) ; | |
| 2129 | } | |
| 2130 | ||
| 2131 | [O perationCo ntract] | |
| 2132 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/USER_R OLES_GET_B Y_USERID_R OLEID?iden tity={iden tity}®i stryId={re gistryId}& userId={us erId}&role Id={roleId }")] | |
| 2133 | pu blic USER_ ROLES USER _ROLES_GET _BY_USERID _ROLEID_XM L(string i dentity, i nt registr yId, int u serId, int roleId) | |
| 2134 | { | |
| 2135 | return t his.USER_R OLES_GET_B Y_USERID_R OLEID(iden tity, regi stryId, us erId, role Id); | |
| 2136 | } | |
| 2137 | ||
| 2138 | [O perationCo ntract] | |
| 2139 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/USER_R OLES_GET_B Y_USER_ROL E?username ={username }&rolename ={rolename }")] | |
| 2140 | pu blic USER_ ROLES USER _ROLES_GET _BY_USER_R OLE_XML(st ring usern ame, strin g rolename ) | |
| 2141 | { | |
| 2142 | return t his.USER_R OLES_GET_B Y_USER_ROL E(username , rolename ); | |
| 2143 | } | |
| 2144 | ||
| 2145 | [O perationCo ntract] | |
| 2146 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/USER_R OLES_GET_R OLES?usern ame={usern ame}")] | |
| 2147 | pu blic strin g[] USER_R OLES_GET_R OLES_XML(s tring user name) | |
| 2148 | { | |
| 2149 | return t his.USER_R OLES_GET_R OLES(usern ame); | |
| 2150 | } | |
| 2151 | ||
| 2152 | [O perationCo ntract] | |
| 2153 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/USER_R OLES_GET_A LL_BY_USER ?identity= {identity} ®istryI d={registr yId}&userI d={userId} ")] | |
| 2154 | pu blic List< USER_ROLES > USER_ROL ES_GET_ALL _BY_USER_X ML(string identity, int regist ryId, int userId) | |
| 2155 | { | |
| 2156 | return t his.USER_R OLES_GET_A LL_BY_USER (identity, registryI d, userId) ; | |
| 2157 | } | |
| 2158 | ||
| 2159 | [O perationCo ntract] | |
| 2160 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/USER_R OLES_DELET E_BY_USER_ REGISTRY?i dentity={i dentity}&r egistryId= {registryI d}&stdRegi stryId={st dRegistryI d}")] | |
| 2161 | pu blic bool USER_ROLES _DELETE_BY _USER_REGI STRY_XML(s tring iden tity, int registryId , int user Id, int st dRegistryI d) | |
| 2162 | { | |
| 2163 | return t his.USER_R OLES_DELET E_BY_USER_ REGISTRY(i dentity, r egistryId, userId, s tdRegistry Id); | |
| 2164 | } | |
| 2165 | ||
| 2166 | [O perationCo ntract] | |
| 2167 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/USER _ROLES_GET _BY_USERID _ROLEID?id entity={id entity}&re gistryId={ registryId }&userId={ userId}&ro leId={role Id}")] | |
| 2168 | pu blic USER_ ROLES USER _ROLES_GET _BY_USERID _ROLEID_JS ON(string identity, int regist ryId, int userId, in t roleId) | |
| 2169 | { | |
| 2170 | return t his.USER_R OLES_GET_B Y_USERID_R OLEID(iden tity, regi stryId, us erId, role Id); | |
| 2171 | } | |
| 2172 | ||
| 2173 | [O perationCo ntract] | |
| 2174 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/USER _ROLES_GET _BY_USER_R OLE?userna me={userna me}&rolena me={rolena me}")] | |
| 2175 | pu blic USER_ ROLES USER _ROLES_GET _BY_USER_R OLE_JSON(s tring user name, stri ng rolenam e) | |
| 2176 | { | |
| 2177 | return t his.USER_R OLES_GET_B Y_USER_ROL E(username , rolename ); | |
| 2178 | } | |
| 2179 | ||
| 2180 | [O perationCo ntract] | |
| 2181 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/USER _ROLES_GET _ROLES?use rname={use rname}")] | |
| 2182 | pu blic strin g[] USER_R OLES_GET_R OLES_JSON( string use rname) | |
| 2183 | { | |
| 2184 | return t his.USER_R OLES_GET_R OLES(usern ame); | |
| 2185 | } | |
| 2186 | ||
| 2187 | [O perationCo ntract] | |
| 2188 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/USER _ROLES_GET _ALL_BY_US ER?identit y={identit y}®istr yId={regis tryId}&use rId={userI d}")] | |
| 2189 | pu blic List< USER_ROLES > USER_ROL ES_GET_ALL _BY_USER_J SON(string identity, int regis tryId, int userId) | |
| 2190 | { | |
| 2191 | return t his.USER_R OLES_GET_A LL_BY_USER (identity, registryI d, userId) ; | |
| 2192 | } | |
| 2193 | ||
| 2194 | [O perationCo ntract] | |
| 2195 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/USER _ROLES_DEL ETE_BY_USE R_REGISTRY ?identity= {identity} ®istryI d={registr yId}&userI d={userId} &stdRegist ryId={stdR egistryId} ")] | |
| 2196 | pu blic bool USER_ROLES _DELETE_BY _USER_REGI STRY_JSON( string ide ntity, int registryI d, int use rId, int s tdRegistry Id) | |
| 2197 | { | |
| 2198 | return t his.USER_R OLES_DELET E_BY_USER_ REGISTRY(i dentity, r egistryId, userId, s tdRegistry Id); | |
| 2199 | } | |
| 2200 | ||
| 2201 | [W ebMethod] | |
| 2202 | pu blic bool USER_ROLES _SAVE_ALL( string ide ntity, int registryI d, USER_RO LES[] user Roles) | |
| 2203 | { | |
| 2204 | return V IRPManager .USER_ROLE S_SAVE_ALL (identity, registryI d, userRol es); | |
| 2205 | } | |
| 2206 | ||
| 2207 | [O perationCo ntract] | |
| 2208 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/USER_R OLES_SAVE_ ALL?identi ty={identi ty}®ist ryId={regi stryId}&us erId={user Id}&stdReg istryId={s tdRegistry Id}&userRo les={userR oles}")] | |
| 2209 | pu blic bool USER_ROLES _SAVE_ALL_ XML(string identity, int regis tryId, USE R_ROLES[] userRoles) | |
| 2210 | { | |
| 2211 | return t his.USER_R OLES_SAVE_ ALL(identi ty, regist ryId, user Roles); | |
| 2212 | } | |
| 2213 | ||
| 2214 | [O perationCo ntract] | |
| 2215 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/USER _ROLES_SAV E_ALL?iden tity={iden tity}®i stryId={re gistryId}& userId={us erId}&stdR egistryId= {stdRegist ryId}&user Roles={use rRoles}")] | |
| 2216 | pu blic bool USER_ROLES _SAVE_ALL_ JSON(strin g identity , int regi stryId, US ER_ROLES[] userRoles ) | |
| 2217 | { | |
| 2218 | return t his.USER_R OLES_SAVE_ ALL(identi ty, regist ryId, user Roles); | |
| 2219 | } | |
| 2220 | ||
| 2221 | #e ndregion | |
| 2222 | ||
| 2223 | #r egion USER S | |
| 2224 | ||
| 2225 | [W ebMethod] | |
| 2226 | pu blic USERS USERS_GET (string id entity, in t registry Id, int id ) | |
| 2227 | { | |
| 2228 | return V IRPManager .USERS_GET (identity, registryI d, id); | |
| 2229 | } | |
| 2230 | ||
| 2231 | [W ebMethod] | |
| 2232 | pu blic List< USERS> USE RS_GET_ALL (string id entity, in t registry Id) | |
| 2233 | { | |
| 2234 | return V IRPManager .USERS_GET _ALL(ident ity, regis tryId); | |
| 2235 | } | |
| 2236 | ||
| 2237 | [W ebMethod] | |
| 2238 | pu blic int U SERS_SAVE( string ide ntity, int registryI d, USERS o bjSave) | |
| 2239 | { | |
| 2240 | return V IRPManager .USERS_SAV E(identity , registry Id, objSav e); | |
| 2241 | } | |
| 2242 | ||
| 2243 | [W ebMethod] | |
| 2244 | pu blic Boole an USERS_D ELETE(stri ng identit y, int reg istryId, i nt id) | |
| 2245 | { | |
| 2246 | return V IRPManager .USERS_DEL ETE(identi ty, regist ryId, id); | |
| 2247 | } | |
| 2248 | ||
| 2249 | [O perationCo ntract] | |
| 2250 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/USERS_ GET?identi ty={identi ty}®ist ryId={regi stryId}&id ={id}")] | |
| 2251 | pu blic USERS USERS_GET _XML(strin g identity , int regi stryId, in t id) | |
| 2252 | { | |
| 2253 | return t his.USERS_ GET(identi ty, regist ryId, id); | |
| 2254 | } | |
| 2255 | ||
| 2256 | [O perationCo ntract] | |
| 2257 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/USERS_ GET_ALL?id entity={id entity}&re gistryId={ registryId }")] | |
| 2258 | pu blic List< USERS> USE RS_GET_ALL _XML(strin g identity , int regi stryId) | |
| 2259 | { | |
| 2260 | return t his.USERS_ GET_ALL(id entity, re gistryId); | |
| 2261 | } | |
| 2262 | ||
| 2263 | [O perationCo ntract] | |
| 2264 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/USERS_ SAVE?ident ity={ident ity}®is tryId={reg istryId}") ] | |
| 2265 | pu blic int U SERS_SAVE_ XML(string identity, int regis tryId, USE RS objSave ) | |
| 2266 | { | |
| 2267 | return t his.USERS_ SAVE(ident ity, regis tryId, obj Save); | |
| 2268 | } | |
| 2269 | ||
| 2270 | [O perationCo ntract] | |
| 2271 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/USERS_ DELETE?ide ntity={ide ntity}® istryId={r egistryId} &id={id}") ] | |
| 2272 | pu blic Boole an USERS_D ELETE_XML( string ide ntity, int registryI d, int id) | |
| 2273 | { | |
| 2274 | return t his.USERS_ DELETE(ide ntity, reg istryId, i d); | |
| 2275 | } | |
| 2276 | ||
| 2277 | [O perationCo ntract] | |
| 2278 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/USER S_GET?iden tity={iden tity}®i stryId={re gistryId}& id={id}")] | |
| 2279 | pu blic USERS USERS_GET _JSON(stri ng identit y, int reg istryId, i nt id) | |
| 2280 | { | |
| 2281 | return t his.USERS_ GET(identi ty, regist ryId, id); | |
| 2282 | } | |
| 2283 | ||
| 2284 | [O perationCo ntract] | |
| 2285 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/USER S_GET_ALL? identity={ identity}& registryId ={registry Id}")] | |
| 2286 | pu blic List< USERS> USE RS_GET_ALL _JSON(stri ng identit y, int reg istryId) | |
| 2287 | { | |
| 2288 | return t his.USERS_ GET_ALL(id entity, re gistryId); | |
| 2289 | } | |
| 2290 | ||
| 2291 | [O perationCo ntract] | |
| 2292 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/USER S_SAVE?ide ntity={ide ntity}® istryId={r egistryId} ")] | |
| 2293 | pu blic int U SERS_SAVE_ JSON(strin g identity , int regi stryId, US ERS objSav e) | |
| 2294 | { | |
| 2295 | return t his.USERS_ SAVE(ident ity, regis tryId, obj Save); | |
| 2296 | } | |
| 2297 | ||
| 2298 | [O perationCo ntract] | |
| 2299 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/USER S_DELETE?i dentity={i dentity}&r egistryId= {registryI d}&id={id} ")] | |
| 2300 | pu blic Boole an USERS_D ELETE_JSON (string id entity, in t registry Id, int id ) | |
| 2301 | { | |
| 2302 | return t his.USERS_ DELETE(ide ntity, reg istryId, i d); | |
| 2303 | } | |
| 2304 | ||
| 2305 | [W ebMethod] | |
| 2306 | pu blic USERS USERS_GET _BY_NAME(s tring iden tity, int registryId , string u sername) | |
| 2307 | { | |
| 2308 | return V IRPManager .USERS_GET _BY_NAME(i dentity, r egistryId, username) ; | |
| 2309 | } | |
| 2310 | ||
| 2311 | [O perationCo ntract] | |
| 2312 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/USERS_ GET_BY_NAM E?identity ={identity }®istry Id={regist ryId}&user name={user name}")] | |
| 2313 | pu blic USERS USERS_GET _BY_NAME_X ML(string identity, int regist ryId, stri ng usernam e) | |
| 2314 | { | |
| 2315 | return t his.USERS_ GET_BY_NAM E(identity , registry Id, userna me); | |
| 2316 | } | |
| 2317 | ||
| 2318 | [O perationCo ntract] | |
| 2319 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/USER S_GET_BY_N AME?identi ty={identi ty}®ist ryId={regi stryId}&us ername={us ername}")] | |
| 2320 | pu blic USERS USERS_GET _BY_NAME_J SON(string identity, int regis tryId, str ing userna me) | |
| 2321 | { | |
| 2322 | return t his.USERS_ GET_BY_NAM E(identity , registry Id, userna me); | |
| 2323 | } | |
| 2324 | ||
| 2325 | [W ebMethod] | |
| 2326 | pu blic bool USERS_DEFA ULT_REGIST RY(string identity, int regist ryId, bool isDefault ) | |
| 2327 | { | |
| 2328 | return V IRPManager .USERS_DEF AULT_REGIS TRY(identi ty, regist ryId, isDe fault); | |
| 2329 | } | |
| 2330 | ||
| 2331 | [O perationCo ntract] | |
| 2332 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/USERS_ DEFAULT_RE GISTRY?ide ntity={ide ntity}® istryId={r egistryId} &isDefault ={isDefaul t}")] | |
| 2333 | pu blic bool USERS_DEFA ULT_REGIST RY_XML(str ing identi ty, int re gistryId, bool isDef ault) | |
| 2334 | { | |
| 2335 | return t his.USERS_ DEFAULT_RE GISTRY(ide ntity, reg istryId, i sDefault); | |
| 2336 | } | |
| 2337 | ||
| 2338 | [O perationCo ntract] | |
| 2339 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/USER S_DEFAULT_ REGISTRY?i dentity={i dentity}&r egistryId= {registryI d}&isDefau lt={isDefa ult}")] | |
| 2340 | pu blic bool USERS_DEFA ULT_REGIST RY_JSON(st ring ident ity, int r egistryId, bool isDe fault) | |
| 2341 | { | |
| 2342 | return t his.USERS_ DEFAULT_RE GISTRY(ide ntity, reg istryId, i sDefault); | |
| 2343 | } | |
| 2344 | ||
| 2345 | [W ebMethod] | |
| 2346 | pu blic Domai nNames USE RS_LOAD_FR OM_AD() | |
| 2347 | { | |
| 2348 | return V IRPManager .USERS_LOA D_FROM_AD( ); | |
| 2349 | } | |
| 2350 | ||
| 2351 | [W ebMethod] | |
| 2352 | pu blic List< DomainUser > USERS_GE T_ALL_BY_A D(DomainNa mes domain Names, str ing search String) | |
| 2353 | { | |
| 2354 | return V IRPManager .USERS_GET _ALL_BY_AD (domainNam es, search String); | |
| 2355 | } | |
| 2356 | ||
| 2357 | [W ebMethod] | |
| 2358 | pu blic List< USERS> USE RS_GET_ALL _BY_USER(s tring iden tity, int registryId ) | |
| 2359 | { | |
| 2360 | return V IRPManager .USERS_GET _ALL_BY_US ER(identit y, registr yId); | |
| 2361 | } | |
| 2362 | ||
| 2363 | [O perationCo ntract] | |
| 2364 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/USERS_ LOAD_FROM_ AD")] | |
| 2365 | pu blic Domai nNames USE RS_LOAD_FR OM_AD_XML( ) | |
| 2366 | { | |
| 2367 | return t his.USERS_ LOAD_FROM_ AD(); | |
| 2368 | } | |
| 2369 | ||
| 2370 | [O perationCo ntract] | |
| 2371 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/USERS_ GET_ALL_BY _AD?domain Names={dom ainNames}& searchStri ng={search String}")] | |
| 2372 | pu blic List< DomainUser > USERS_GE T_ALL_BY_A D_XML(Doma inNames do mainNames, string se archString ) | |
| 2373 | { | |
| 2374 | return t his.USERS_ GET_ALL_BY _AD(domain Names, sea rchString) ; | |
| 2375 | } | |
| 2376 | ||
| 2377 | [O perationCo ntract] | |
| 2378 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/USERS_ GET_ALL_BY _USER?iden tity={iden tity}®i stryId={re gistryId}" )] | |
| 2379 | pu blic List< USERS> USE RS_GET_ALL _BY_USER_X ML(string identity, int regist ryId) | |
| 2380 | { | |
| 2381 | return t his.USERS_ GET_ALL_BY _USER(iden tity, regi stryId); | |
| 2382 | } | |
| 2383 | ||
| 2384 | [O perationCo ntract] | |
| 2385 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/USER S_LOAD_FRO M_AD")] | |
| 2386 | pu blic Domai nNames USE RS_LOAD_FR OM_AD_JSON () | |
| 2387 | { | |
| 2388 | return t his.USERS_ LOAD_FROM_ AD(); | |
| 2389 | } | |
| 2390 | ||
| 2391 | [O perationCo ntract] | |
| 2392 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/USER S_GET_ALL_ BY_AD?doma inNames={d omainNames }&searchSt ring={sear chString}" )] | |
| 2393 | pu blic List< DomainUser > USERS_GE T_ALL_BY_A D_JSON(Dom ainNames d omainNames , string s earchStrin g) | |
| 2394 | { | |
| 2395 | return t his.USERS_ GET_ALL_BY _AD(domain Names, sea rchString) ; | |
| 2396 | } | |
| 2397 | ||
| 2398 | [O perationCo ntract] | |
| 2399 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/USER S_GET_ALL_ BY_USER?id entity={id entity}&re gistryId={ registryId }")] | |
| 2400 | pu blic List< USERS> USE RS_GET_ALL _BY_USER_J SON(string identity, int regis tryId) | |
| 2401 | { | |
| 2402 | return t his.USERS_ GET_ALL_BY _USER(iden tity, regi stryId); | |
| 2403 | } | |
| 2404 | ||
| 2405 | #e ndregion | |
| 2406 | ||
| 2407 | #r egion WKF_ CASE | |
| 2408 | ||
| 2409 | [W ebMethod] | |
| 2410 | pu blic WKF_C ASE WKF_CA SE_GET(str ing identi ty, int re gistryId, int id) | |
| 2411 | { | |
| 2412 | return V IRPManager .WKF_CASE_ GET(identi ty, regist ryId, id); | |
| 2413 | } | |
| 2414 | ||
| 2415 | [W ebMethod] | |
| 2416 | pu blic int W KF_CASE_SA VE(string identity, int regist ryId, WKF_ CASE objSa ve) | |
| 2417 | { | |
| 2418 | return V IRPManager .WKF_CASE_ SAVE(ident ity, regis tryId, obj Save); | |
| 2419 | } | |
| 2420 | ||
| 2421 | [W ebMethod] | |
| 2422 | pu blic Boole an WKF_CAS E_DELETE(s tring iden tity, int registryId , int id) | |
| 2423 | { | |
| 2424 | return V IRPManager .WKF_CASE_ DELETE(ide ntity, reg istryId, i d); | |
| 2425 | } | |
| 2426 | ||
| 2427 | [O perationCo ntract] | |
| 2428 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/WKF_CA SE_GET?ide ntity={ide ntity}® istryId={r egistryId} &id={id}") ] | |
| 2429 | pu blic WKF_C ASE WKF_CA SE_GET_XML (string id entity, in t registry Id, int id ) | |
| 2430 | { | |
| 2431 | return t his.WKF_CA SE_GET(ide ntity, reg istryId, i d); | |
| 2432 | } | |
| 2433 | ||
| 2434 | [O perationCo ntract] | |
| 2435 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/WKF_CA SE_SAVE?id entity={id entity}&re gistryId={ registryId }")] | |
| 2436 | pu blic int W KF_CASE_SA VE_XML(str ing identi ty, int re gistryId, WKF_CASE o bjSave) | |
| 2437 | { | |
| 2438 | return t his.WKF_CA SE_SAVE(id entity, re gistryId, objSave); | |
| 2439 | } | |
| 2440 | ||
| 2441 | [O perationCo ntract] | |
| 2442 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/WKF_CA SE_DELETE? identity={ identity}& registryId ={registry Id}&id={id }")] | |
| 2443 | pu blic Boole an WKF_CAS E_DELETE_X ML(string identity, int regist ryId, int id) | |
| 2444 | { | |
| 2445 | return t his.WKF_CA SE_DELETE( identity, registryId , id); | |
| 2446 | } | |
| 2447 | ||
| 2448 | [O perationCo ntract] | |
| 2449 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/WKF_ CASE_GET?i dentity={i dentity}&r egistryId= {registryI d}&id={id} ")] | |
| 2450 | pu blic WKF_C ASE WKF_CA SE_GET_JSO N(string i dentity, i nt registr yId, int i d) | |
| 2451 | { | |
| 2452 | return t his.WKF_CA SE_GET(ide ntity, reg istryId, i d); | |
| 2453 | } | |
| 2454 | ||
| 2455 | [O perationCo ntract] | |
| 2456 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/WKF_ CASE_SAVE? identity={ identity}& registryId ={registry Id}")] | |
| 2457 | pu blic int W KF_CASE_SA VE_JSON(st ring ident ity, int r egistryId, WKF_CASE objSave) | |
| 2458 | { | |
| 2459 | return t his.WKF_CA SE_SAVE(id entity, re gistryId, objSave); | |
| 2460 | } | |
| 2461 | ||
| 2462 | [O perationCo ntract] | |
| 2463 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/WKF_ CASE_DELET E?identity ={identity }®istry Id={regist ryId}&id={ id}")] | |
| 2464 | pu blic Boole an WKF_CAS E_DELETE_J SON(string identity, int regis tryId, int id) | |
| 2465 | { | |
| 2466 | return t his.WKF_CA SE_DELETE( identity, registryId , id); | |
| 2467 | } | |
| 2468 | ||
| 2469 | [W ebMethod] | |
| 2470 | pu blic List< WKF_CASE> WKF_CASE_G ET_ALL_BY_ REGISTRY(s tring iden tity, int registryId ) | |
| 2471 | { | |
| 2472 | return V IRPManager .WKF_CASE_ GET_ALL_BY _REGISTRY( identity, registryId ); | |
| 2473 | } | |
| 2474 | ||
| 2475 | [O perationCo ntract] | |
| 2476 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/WKF_CA SE_GET_ALL _BY_REGIST RY?identit y={identit y}®istr yId={regis tryId}")] | |
| 2477 | pu blic List< WKF_CASE> WKF_CASE_G ET_ALL_BY_ REGISTRY_X ML(string identity, int regist ryId) | |
| 2478 | { | |
| 2479 | return t his.WKF_CA SE_GET_ALL _BY_REGIST RY(identit y, registr yId); | |
| 2480 | } | |
| 2481 | ||
| 2482 | [O perationCo ntract] | |
| 2483 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/WKF_ CASE_GET_A LL_BY_REGI STRY?ident ity={ident ity}®is tryId={reg istryId}") ] | |
| 2484 | pu blic List< WKF_CASE> WKF_CASE_G ET_ALL_BY_ REGISTRY_J SON(string identity, int regis tryId) | |
| 2485 | { | |
| 2486 | return t his.WKF_CA SE_GET_ALL _BY_REGIST RY(identit y, registr yId); | |
| 2487 | } | |
| 2488 | ||
| 2489 | [W ebMethod] | |
| 2490 | pu blic bool WKF_CASE_U PDATE_STAT US(string identity, int regist ryId, int wkfCaseId, int statu sId) | |
| 2491 | { | |
| 2492 | return V IRPManager .WKF_CASE_ UPDATE_STA TUS(identi ty, regist ryId, wkfC aseId, sta tusId); | |
| 2493 | } | |
| 2494 | ||
| 2495 | [O perationCo ntract] | |
| 2496 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/WKF_CA SE_UPDATE_ STATUS?ide ntity={ide ntity}® istryId={r egistryId} &wkfCaseId ={wkfCaseI d}&statusI d={statusI d}")] | |
| 2497 | pu blic bool WKF_CASE_U PDATE_STAT US_XML(str ing identi ty, int re gistryId, int wkfCas eId, int s tatusId) | |
| 2498 | { | |
| 2499 | return t his.WKF_CA SE_UPDATE_ STATUS(ide ntity, reg istryId, w kfCaseId, statusId); | |
| 2500 | } | |
| 2501 | ||
| 2502 | [O perationCo ntract] | |
| 2503 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/WKF_ CASE_UPDAT E_STATUS?i dentity={i dentity}&r egistryId= {registryI d}&wkfCase Id={wkfCas eId}&statu sId={statu sId}")] | |
| 2504 | pu blic bool WKF_CASE_U PDATE_STAT US_JSON(st ring ident ity, int r egistryId, int wkfCa seId, int statusId) | |
| 2505 | { | |
| 2506 | return t his.WKF_CA SE_UPDATE_ STATUS(ide ntity, reg istryId, w kfCaseId, statusId); | |
| 2507 | } | |
| 2508 | ||
| 2509 | #e ndregion | |
| 2510 | ||
| 2511 | #r egion WKF_ CASE_ACTIV ITY | |
| 2512 | ||
| 2513 | [W ebMethod] | |
| 2514 | pu blic WKF_C ASE_ACTIVI TY WKF_CAS E_ACTIVITY _GET(strin g identity , int regi stryId, in t id) | |
| 2515 | { | |
| 2516 | return V IRPManager .WKF_CASE_ ACTIVITY_G ET(identit y, registr yId, id); | |
| 2517 | } | |
| 2518 | ||
| 2519 | [W ebMethod] | |
| 2520 | pu blic int W KF_CASE_AC TIVITY_SAV E(string i dentity, i nt registr yId, WKF_C ASE_ACTIVI TY objSave ) | |
| 2521 | { | |
| 2522 | return V IRPManager .WKF_CASE_ ACTIVITY_S AVE(identi ty, regist ryId, objS ave); | |
| 2523 | } | |
| 2524 | ||
| 2525 | [W ebMethod] | |
| 2526 | pu blic Boole an WKF_CAS E_ACTIVITY _DELETE(st ring ident ity, int r egistryId, int id) | |
| 2527 | { | |
| 2528 | return V IRPManager .WKF_CASE_ ACTIVITY_D ELETE(iden tity, regi stryId, id ); | |
| 2529 | } | |
| 2530 | ||
| 2531 | [O perationCo ntract] | |
| 2532 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/WKF_CA SE_ACTIVIT Y_GET?iden tity={iden tity}®i stryId={re gistryId}& id={id}")] | |
| 2533 | pu blic WKF_C ASE_ACTIVI TY WKF_CAS E_ACTIVITY _GET_XML(s tring iden tity, int registryId , int id) | |
| 2534 | { | |
| 2535 | return t his.WKF_CA SE_ACTIVIT Y_GET(iden tity, regi stryId, id ); | |
| 2536 | } | |
| 2537 | ||
| 2538 | [O perationCo ntract] | |
| 2539 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/WKF_CA SE_ACTIVIT Y_SAVE?ide ntity={ide ntity}® istryId={r egistryId} ")] | |
| 2540 | pu blic int W KF_CASE_AC TIVITY_SAV E_XML(stri ng identit y, int reg istryId, W KF_CASE_AC TIVITY obj Save) | |
| 2541 | { | |
| 2542 | return t his.WKF_CA SE_ACTIVIT Y_SAVE(ide ntity, reg istryId, o bjSave); | |
| 2543 | } | |
| 2544 | ||
| 2545 | [O perationCo ntract] | |
| 2546 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/WKF_CA SE_ACTIVIT Y_DELETE?i dentity={i dentity}&r egistryId= {registryI d}&id={id} ")] | |
| 2547 | pu blic Boole an WKF_CAS E_ACTIVITY _DELETE_XM L(string i dentity, i nt registr yId, int i d) | |
| 2548 | { | |
| 2549 | return t his.WKF_CA SE_ACTIVIT Y_DELETE(i dentity, r egistryId, id); | |
| 2550 | } | |
| 2551 | ||
| 2552 | [O perationCo ntract] | |
| 2553 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/WKF_ CASE_ACTIV ITY_GET?id entity={id entity}&re gistryId={ registryId }&id={id}" )] | |
| 2554 | pu blic WKF_C ASE_ACTIVI TY WKF_CAS E_ACTIVITY _GET_JSON( string ide ntity, int registryI d, int id) | |
| 2555 | { | |
| 2556 | return t his.WKF_CA SE_ACTIVIT Y_GET(iden tity, regi stryId, id ); | |
| 2557 | } | |
| 2558 | ||
| 2559 | [O perationCo ntract] | |
| 2560 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/WKF_ CASE_ACTIV ITY_SAVE?i dentity={i dentity}&r egistryId= {registryI d}")] | |
| 2561 | pu blic int W KF_CASE_AC TIVITY_SAV E_JSON(str ing identi ty, int re gistryId, WKF_CASE_A CTIVITY ob jSave) | |
| 2562 | { | |
| 2563 | return t his.WKF_CA SE_ACTIVIT Y_SAVE(ide ntity, reg istryId, o bjSave); | |
| 2564 | } | |
| 2565 | ||
| 2566 | [O perationCo ntract] | |
| 2567 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/WKF_ CASE_ACTIV ITY_DELETE ?identity= {identity} ®istryI d={registr yId}&id={i d}")] | |
| 2568 | pu blic Boole an WKF_CAS E_ACTIVITY _DELETE_JS ON(string identity, int regist ryId, int id) | |
| 2569 | { | |
| 2570 | return t his.WKF_CA SE_ACTIVIT Y_DELETE(i dentity, r egistryId, id); | |
| 2571 | } | |
| 2572 | ||
| 2573 | [W ebMethod] | |
| 2574 | pu blic List< WKF_CASE_A CTIVITY> W KF_CASE_AC TIVITY_GET _ALL_BY_RE GISTRY(str ing identi ty, int re gistryId) | |
| 2575 | { | |
| 2576 | return V IRPManager .WKF_CASE_ ACTIVITY_G ET_ALL_BY_ REGISTRY(i dentity, r egistryId) ; | |
| 2577 | } | |
| 2578 | ||
| 2579 | [O perationCo ntract] | |
| 2580 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/WKF_CA SE_ACTIVIT Y_GET_ALL_ BY_REGISTR Y?identity ={identity }®istry Id={regist ryId}")] | |
| 2581 | pu blic List< WKF_CASE_A CTIVITY> W KF_CASE_AC TIVITY_GET _ALL_BY_RE GISTRY_XML (string id entity, in t registry Id) | |
| 2582 | { | |
| 2583 | return t his.WKF_CA SE_ACTIVIT Y_GET_ALL_ BY_REGISTR Y(identity , registry Id); | |
| 2584 | } | |
| 2585 | ||
| 2586 | [O perationCo ntract] | |
| 2587 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/WKF_ CASE_ACTIV ITY_GET_AL L_BY_REGIS TRY?identi ty={identi ty}®ist ryId={regi stryId}")] | |
| 2588 | pu blic List< WKF_CASE_A CTIVITY> W KF_CASE_AC TIVITY_GET _ALL_BY_RE GISTRY_JSO N(string i dentity, i nt registr yId) | |
| 2589 | { | |
| 2590 | return t his.WKF_CA SE_ACTIVIT Y_GET_ALL_ BY_REGISTR Y(identity , registry Id); | |
| 2591 | } | |
| 2592 | ||
| 2593 | [W ebMethod] | |
| 2594 | pu blic List< WKF_CASE_A CTIVITY> W KF_CASE_AC TIVITY_GET _ALL_BY_WO RKSTREAM(s tring iden tity, int registryId , int wkfC aseId) | |
| 2595 | { | |
| 2596 | return V IRPManager .WKF_CASE_ ACTIVITY_G ET_ALL_BY_ WORKSTREAM (identity, registryI d, wkfCase Id); | |
| 2597 | } | |
| 2598 | ||
| 2599 | [O perationCo ntract] | |
| 2600 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/WKF_CA SE_ACTIVIT Y_GET_ALL_ BY_WORKSTR EAM?identi ty={identi ty}®ist ryId={regi stryId}&wk fCaseId={w kfCaseId}" )] | |
| 2601 | pu blic List< WKF_CASE_A CTIVITY> W KF_CASE_AC TIVITY_GET _ALL_BY_WO RKSTREAM_X ML(string identity, int regist ryId, int wkfCaseId) | |
| 2602 | { | |
| 2603 | return t his.WKF_CA SE_ACTIVIT Y_GET_ALL_ BY_WORKSTR EAM(identi ty, regist ryId, wkfC aseId); | |
| 2604 | } | |
| 2605 | ||
| 2606 | [O perationCo ntract] | |
| 2607 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/WKF_ CASE_ACTIV ITY_GET_AL L_BY_WORKS TREAM?iden tity={iden tity}®i stryId={re gistryId}& wkfCaseId= {wkfCaseId }")] | |
| 2608 | pu blic List< WKF_CASE_A CTIVITY> W KF_CASE_AC TIVITY_GET _ALL_BY_WO RKSTREAM_J SON(string identity, int regis tryId, int wkfCaseId ) | |
| 2609 | { | |
| 2610 | return t his.WKF_CA SE_ACTIVIT Y_GET_ALL_ BY_WORKSTR EAM(identi ty, regist ryId, wkfC aseId); | |
| 2611 | } | |
| 2612 | ||
| 2613 | [W ebMethod] | |
| 2614 | pu blic bool WKF_CASE_A CTIVITY_UP DATE_STATU S(string i dentity, i nt registr yId, int w kfCaseActi vityId, in t statusId ) | |
| 2615 | { | |
| 2616 | return V IRPManager .WKF_CASE_ ACTIVITY_U PDATE_STAT US(identit y, registr yId, wkfCa seActivity Id, status Id); | |
| 2617 | } | |
| 2618 | ||
| 2619 | [O perationCo ntract] | |
| 2620 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/WKF_CA SE_ACTIVIT Y_UPDATE_S TATUS?iden tity={iden tity}®i stryId={re gistryId}& wkfCaseAct ivityId={w kfCaseActi vityId}&st atusId={st atusId}")] | |
| 2621 | pu blic bool WKF_CASE_A CTIVITY_UP DATE_STATU S_XML(stri ng identit y, int reg istryId, i nt wkfCase ActivityId , int stat usId) | |
| 2622 | { | |
| 2623 | return t his.WKF_CA SE_ACTIVIT Y_UPDATE_S TATUS(iden tity, regi stryId, wk fCaseActiv ityId, sta tusId); | |
| 2624 | } | |
| 2625 | ||
| 2626 | [O perationCo ntract] | |
| 2627 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/WKF_ CASE_ACTIV ITY_UPDATE _STATUS?id entity={id entity}&re gistryId={ registryId }&wkfCaseA ctivityId= {wkfCaseAc tivityId}& statusId={ statusId}" )] | |
| 2628 | pu blic bool WKF_CASE_A CTIVITY_UP DATE_STATU S_JSON(str ing identi ty, int re gistryId, int wkfCas eActivityI d, int sta tusId) | |
| 2629 | { | |
| 2630 | return t his.WKF_CA SE_ACTIVIT Y_UPDATE_S TATUS(iden tity, regi stryId, wk fCaseActiv ityId, sta tusId); | |
| 2631 | } | |
| 2632 | ||
| 2633 | #e ndregion | |
| 2634 | ||
| 2635 | #r egion LOGS | |
| 2636 | ||
| 2637 | [W ebMethod] | |
| 2638 | pu blic void LOG_DETAIL S(LogDetai ls logDeta ils) | |
| 2639 | { | |
| 2640 | VIRPMana ger.LOG_DE TAILS(logD etails); | |
| 2641 | } | |
| 2642 | ||
| 2643 | [W ebMethod] | |
| 2644 | pu blic void LOG_TIMING (LogDetail s logDetai ls) | |
| 2645 | { | |
| 2646 | VIRPMana ger.LOG_TI MING(logDe tails); | |
| 2647 | } | |
| 2648 | ||
| 2649 | [W ebMethod] | |
| 2650 | pu blic void LOG_INFORM ATION(stri ng message , string p rocessName , string u sername, i nt registr yId) | |
| 2651 | { | |
| 2652 | VIRPMana ger.LOG_IN FORMATION( message, p rocessName , username , registry Id); | |
| 2653 | } | |
| 2654 | ||
| 2655 | [W ebMethod] | |
| 2656 | pu blic void LOG_ERROR( string mes sage, stri ng process Name, stri ng usernam e, int reg istryId) | |
| 2657 | { | |
| 2658 | VIRPMana ger.LOG_ER ROR(messag e, process Name, user name, regi stryId); | |
| 2659 | } | |
| 2660 | ||
| 2661 | [O perationCo ntract] | |
| 2662 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/LOG_DE TAILS?logD etails={lo gDetails}" )] | |
| 2663 | pu blic void LOG_DETAIL S_XML(LogD etails log Details) | |
| 2664 | { | |
| 2665 | this.LOG _DETAILS(l ogDetails) ; | |
| 2666 | } | |
| 2667 | ||
| 2668 | [O perationCo ntract] | |
| 2669 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/LOG_TI MING?logDe tails={log Details}") ] | |
| 2670 | pu blic void LOG_TIMING _XML(LogDe tails logD etails) | |
| 2671 | { | |
| 2672 | this.LOG _TIMING(lo gDetails); | |
| 2673 | } | |
| 2674 | ||
| 2675 | [O perationCo ntract] | |
| 2676 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/LOG_IN FORMATION? message={m essage}&pr ocessName= {processNa me}&userna me={userna me}®ist ryId={regi stryId}")] | |
| 2677 | pu blic void LOG_INFORM ATION_XML( string mes sage, stri ng process Name, stri ng usernam e, int reg istryId) | |
| 2678 | { | |
| 2679 | this.LOG _INFORMATI ON(message , processN ame, usern ame, regis tryId); | |
| 2680 | } | |
| 2681 | ||
| 2682 | [O perationCo ntract] | |
| 2683 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/LOG_ER ROR?messag e={message }&processN ame={proce ssName}&us ername={us ername}&re gistryId={ registryId }")] | |
| 2684 | pu blic void LOG_ERROR_ XML(string message, string pro cessName, string use rname, int registryI d) | |
| 2685 | { | |
| 2686 | this.LOG _ERROR(mes sage, proc essName, u sername, r egistryId) ; | |
| 2687 | } | |
| 2688 | ||
| 2689 | [O perationCo ntract] | |
| 2690 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/LOG_ DETAILS?lo gDetails={ logDetails }")] | |
| 2691 | pu blic void LOG_DETAIL S_JSON(Log Details lo gDetails) | |
| 2692 | { | |
| 2693 | this.LOG _DETAILS(l ogDetails) ; | |
| 2694 | } | |
| 2695 | ||
| 2696 | [O perationCo ntract] | |
| 2697 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/LOG_ TIMING?log Details={l ogDetails} ")] | |
| 2698 | pu blic void LOG_TIMING _JSON(LogD etails log Details) | |
| 2699 | { | |
| 2700 | this.LOG _TIMING(lo gDetails); | |
| 2701 | } | |
| 2702 | ||
| 2703 | [O perationCo ntract] | |
| 2704 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/LOG_ INFORMATIO N?message= {message}& processNam e={process Name}&user name={user name}®i stryId={re gistryId}" )] | |
| 2705 | pu blic void LOG_INFORM ATION_JSON (string me ssage, str ing proces sName, str ing userna me, int re gistryId) | |
| 2706 | { | |
| 2707 | this.LOG _INFORMATI ON(message , processN ame, usern ame, regis tryId); | |
| 2708 | } | |
| 2709 | ||
| 2710 | [O perationCo ntract] | |
| 2711 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/LOG_ ERROR?mess age={messa ge}&proces sName={pro cessName}& username={ username}& registryId ={registry Id}")] | |
| 2712 | pu blic void LOG_ERROR_ JSON(strin g message, string pr ocessName, string us ername, in t registry Id) | |
| 2713 | { | |
| 2714 | this.LOG _ERROR(mes sage, proc essName, u sername, r egistryId) ; | |
| 2715 | } | |
| 2716 | ||
| 2717 | #e ndregion | |
| 2718 | ||
| 2719 | #r egion REPO RTS | |
| 2720 | ||
| 2721 | [W ebMethod] | |
| 2722 | pu blic List< ReportItem > REPORTS_ GET_ALL_BY _USER_REGI STRY(strin g identity , int regi stryId) | |
| 2723 | { | |
| 2724 | return V IRPManager .REPORTS_G ET_ALL_BY_ USER_REGIS TRY(identi ty, regist ryId); | |
| 2725 | } | |
| 2726 | ||
| 2727 | [O perationCo ntract] | |
| 2728 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REPORT S_GET_ALL_ BY_USER_RE GISTRY?ide ntity={ide ntity}® istryId={r egistryId} ")] | |
| 2729 | pu blic List< ReportItem > REPORTS_ GET_ALL_BY _USER_REGI STRY_XML(s tring iden tity, int registryId ) | |
| 2730 | { | |
| 2731 | return t his.REPORT S_GET_ALL_ BY_USER_RE GISTRY(ide ntity, reg istryId); | |
| 2732 | } | |
| 2733 | ||
| 2734 | [O perationCo ntract] | |
| 2735 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REPO RTS_GET_AL L_BY_USER_ REGISTRY?i dentity={i dentity}&r egistryId= {registryI d}")] | |
| 2736 | pu blic List< ReportItem > REPORTS_ GET_ALL_BY _USER_REGI STRY_JSON( string ide ntity, int registryI d) | |
| 2737 | { | |
| 2738 | return t his.REPORT S_GET_ALL_ BY_USER_RE GISTRY(ide ntity, reg istryId); | |
| 2739 | } | |
| 2740 | ||
| 2741 | [W ebMethod] | |
| 2742 | pu blic List< ReportItem > REPORTS_ GET_ALL_BY _REGISTRY( string ide ntity, int registryI d) | |
| 2743 | { | |
| 2744 | return V IRPManager .REPORTS_G ET_ALL_BY_ REGISTRY(i dentity, r egistryId) ; | |
| 2745 | } | |
| 2746 | ||
| 2747 | [O perationCo ntract] | |
| 2748 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REPORT S_GET_ALL_ BY_REGISTR Y?identity ={identity }®istry Id={regist ryId}")] | |
| 2749 | pu blic List< ReportItem > REPORTS_ GET_ALL_BY _REGISTRY_ XML(string identity, int regis tryId) | |
| 2750 | { | |
| 2751 | return t his.REPORT S_GET_ALL_ BY_REGISTR Y(identity , registry Id); | |
| 2752 | } | |
| 2753 | ||
| 2754 | [O perationCo ntract] | |
| 2755 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REPO RTS_GET_AL L_BY_REGIS TRY?identi ty={identi ty}®ist ryId={regi stryId}")] | |
| 2756 | pu blic List< ReportItem > REPORTS_ GET_ALL_BY _REGISTRY_ JSON(strin g identity , int regi stryId) | |
| 2757 | { | |
| 2758 | return t his.REPORT S_GET_ALL_ BY_REGISTR Y(identity , registry Id); | |
| 2759 | } | |
| 2760 | ||
| 2761 | [W ebMethod] | |
| 2762 | pu blic List< ReportItem > REPORTS_ GET_ALL_SY STEM(strin g identity , int regi stryId) | |
| 2763 | { | |
| 2764 | return V IRPManager .REPORTS_G ET_ALL_SYS TEM(identi ty, regist ryId); | |
| 2765 | } | |
| 2766 | ||
| 2767 | [O perationCo ntract] | |
| 2768 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REPORT S_GET_ALL_ SYSTEM?ide ntity={ide ntity}® istryId={r egistryId} ")] | |
| 2769 | pu blic List< ReportItem > REPORTS_ GET_ALL_SY STEM_XML(s tring iden tity, int registryId ) | |
| 2770 | { | |
| 2771 | return t his.REPORT S_GET_ALL_ SYSTEM(ide ntity, reg istryId); | |
| 2772 | } | |
| 2773 | ||
| 2774 | [O perationCo ntract] | |
| 2775 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REPO RTS_GET_AL L_SYSTEM?i dentity={i dentity}&r egistryId= {registryI d}")] | |
| 2776 | pu blic List< ReportItem > REPORTS_ GET_ALL_SY STEM_JSON( string ide ntity, int registryI d) | |
| 2777 | { | |
| 2778 | return t his.REPORT S_GET_ALL_ SYSTEM(ide ntity, reg istryId); | |
| 2779 | } | |
| 2780 | ||
| 2781 | [W ebMethod] | |
| 2782 | pu blic List< ReportItem > REPORTS_ GET_ALL_BY _USER(stri ng identit y, int reg istryId) | |
| 2783 | { | |
| 2784 | return V IRPManager .REPORTS_G ET_ALL_BY_ USER(ident ity, regis tryId); | |
| 2785 | } | |
| 2786 | ||
| 2787 | [O perationCo ntract] | |
| 2788 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REPORT S_GET_ALL_ BY_USER?id entity={id entity}&re gistryId={ registryId }")] | |
| 2789 | pu blic List< ReportItem > REPORTS_ GET_ALL_BY _USER_XML( string ide ntity, int registryI d) | |
| 2790 | { | |
| 2791 | return t his.REPORT S_GET_ALL_ BY_USER(id entity, re gistryId); | |
| 2792 | } | |
| 2793 | ||
| 2794 | [O perationCo ntract] | |
| 2795 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REPO RTS_GET_AL L_BY_USER? identity={ identity}& registryId ={registry Id}")] | |
| 2796 | pu blic List< ReportItem > REPORTS_ GET_ALL_BY _USER_JSON (string id entity, in t registry Id) | |
| 2797 | { | |
| 2798 | return t his.REPORT S_GET_ALL_ BY_USER(id entity, re gistryId); | |
| 2799 | } | |
| 2800 | ||
| 2801 | [W ebMethod] | |
| 2802 | pu blic bool REPORTS_UP DATE_ITEM_ PROPERTIES (string id entity, in t registry Id, string itemPath, string de scription) | |
| 2803 | { | |
| 2804 | return V IRPManager .REPORTS_U PDATE_ITEM _PROPERTIE S(identity , registry Id, itemPa th, descri ption); | |
| 2805 | } | |
| 2806 | ||
| 2807 | [O perationCo ntract] | |
| 2808 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/REPORT S_UPDATE_I TEM_PROPER TIES?ident ity={ident ity}®is tryId={reg istryId}&i temPath={i temPath}&d escription ={descript ion}")] | |
| 2809 | pu blic bool REPORTS_UP DATE_ITEM_ PROPERTIES _XML(strin g identity , int regi stryId, st ring itemP ath, strin g descript ion) | |
| 2810 | { | |
| 2811 | return t his.REPORT S_UPDATE_I TEM_PROPER TIES(ident ity, regis tryId, ite mPath, des cription); | |
| 2812 | } | |
| 2813 | ||
| 2814 | [O perationCo ntract] | |
| 2815 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/REPO RTS_UPDATE _ITEM_PROP ERTIES?ide ntity={ide ntity}® istryId={r egistryId} &itemPath= {itemPath} &descripti on={descri ption}")] | |
| 2816 | pu blic bool REPORTS_UP DATE_ITEM_ PROPERTIES _JSON(stri ng identit y, int reg istryId, s tring item Path, stri ng descrip tion) | |
| 2817 | { | |
| 2818 | return t his.REPORT S_UPDATE_I TEM_PROPER TIES(ident ity, regis tryId, ite mPath, des cription); | |
| 2819 | } | |
| 2820 | ||
| 2821 | #e ndregion | |
| 2822 | ||
| 2823 | #r egion APPS ETTINGS | |
| 2824 | ||
| 2825 | [W ebMethod] | |
| 2826 | pu blic AppSe ttings APP SETTINGS_G ET(string identity, int regist ryId) | |
| 2827 | { | |
| 2828 | AppSetti ngs appSet tings = ne w AppSetti ngs(); | |
| 2829 | ||
| 2830 | if (WebC onfigurati onManager. AppSetting s["SqlComm andTimeout "] != null ) | |
| 2831 | { | |
| 2832 | int value = 0; | |
| 2833 | int. TryParse(W ebConfigur ationManag er.AppSett ings["SqlC ommandTime out"], out value); | |
| 2834 | appS ettings.Sq lCommandTi meout = va lue; | |
| 2835 | } | |
| 2836 | ||
| 2837 | if (WebC onfigurati onManager. AppSetting s["LogFile Size"] != null) | |
| 2838 | { | |
| 2839 | int value = 0; | |
| 2840 | int. TryParse(W ebConfigur ationManag er.AppSett ings["LogF ileSize"], out value ); | |
| 2841 | appS ettings.Lo gFileSize = value; | |
| 2842 | } | |
| 2843 | ||
| 2844 | if (WebC onfigurati onManager. AppSetting s["LogFile Archive"] != null) | |
| 2845 | { | |
| 2846 | int value = 0; | |
| 2847 | int. TryParse(W ebConfigur ationManag er.AppSett ings["LogF ileArchive "], out va lue); | |
| 2848 | appS ettings.Lo gFileArchi ve = value ; | |
| 2849 | } | |
| 2850 | ||
| 2851 | if (WebC onfigurati onManager. AppSetting s["LogErro rs"] != nu ll) | |
| 2852 | { | |
| 2853 | bool value = f alse; | |
| 2854 | bool .TryParse( WebConfigu rationMana ger.AppSet tings["Log Errors"], out value) ; | |
| 2855 | appS ettings.Lo gErrors = value; | |
| 2856 | } | |
| 2857 | ||
| 2858 | if (WebC onfigurati onManager. AppSetting s["LogInfo rmation"] != null) | |
| 2859 | { | |
| 2860 | bool value = f alse; | |
| 2861 | bool .TryParse( WebConfigu rationMana ger.AppSet tings["Log Informatio n"], out v alue); | |
| 2862 | appS ettings.Lo gInformati on = value ; | |
| 2863 | } | |
| 2864 | ||
| 2865 | if (WebC onfigurati onManager. AppSetting s["LogTimi ng"] != nu ll) | |
| 2866 | { | |
| 2867 | bool value = f alse; | |
| 2868 | bool .TryParse( WebConfigu rationMana ger.AppSet tings["Log Timing"], out value) ; | |
| 2869 | appS ettings.Lo gTiming = value; | |
| 2870 | } | |
| 2871 | ||
| 2872 | if (WebC onfigurati onManager. AppSetting s["Databas eLogEnable d"] != nul l) | |
| 2873 | { | |
| 2874 | bool value = f alse; | |
| 2875 | bool .TryParse( WebConfigu rationMana ger.AppSet tings["Dat abaseLogEn abled"], o ut value); | |
| 2876 | appS ettings.Da tabaseLogE nabled = v alue; | |
| 2877 | } | |
| 2878 | ||
| 2879 | if (WebC onfigurati onManager. AppSetting s["EventLo gEnabled"] != null) | |
| 2880 | { | |
| 2881 | bool value = f alse; | |
| 2882 | bool .TryParse( WebConfigu rationMana ger.AppSet tings["Eve ntLogEnabl ed"], out value); | |
| 2883 | appS ettings.Ev entLogEnab led = valu e; | |
| 2884 | } | |
| 2885 | ||
| 2886 | if (WebC onfigurati onManager. AppSetting s["FileLog Enabled"] != null) | |
| 2887 | { | |
| 2888 | bool value = f alse; | |
| 2889 | bool .TryParse( WebConfigu rationMana ger.AppSet tings["Fil eLogEnable d"], out v alue); | |
| 2890 | appS ettings.Fi leLogEnabl ed = value ; | |
| 2891 | } | |
| 2892 | ||
| 2893 | appSetti ngs.FileLo gPath = We bConfigura tionManage r.AppSetti ngs["FileL ogPath"]; | |
| 2894 | ||
| 2895 | if (WebC onfigurati onManager. AppSetting s["MviEnab led"] != n ull) | |
| 2896 | { | |
| 2897 | bool value = f alse; | |
| 2898 | bool .TryParse( WebConfigu rationMana ger.AppSet tings["Mvi Enabled"], out value ); | |
| 2899 | appS ettings.Mv iEnabled = value; | |
| 2900 | } | |
| 2901 | ||
| 2902 | appSetti ngs.MviPro cessingCod e = WebCon figuration Manager.Ap pSettings[ "MviProces singCode"] ; | |
| 2903 | appSetti ngs.MviCer tName = We bConfigura tionManage r.AppSetti ngs["MviCe rtName"]; | |
| 2904 | appSetti ngs.MviSer viceUrl = WebConfigu rationMana ger.AppSet tings["Mvi ServiceUrl "]; | |
| 2905 | ||
| 2906 | appSetti ngs.Report ServerUrl = WebConfi gurationMa nager.AppS ettings["R eportServe rUrl"]; | |
| 2907 | appSetti ngs.Report ServicePat h = WebCon figuration Manager.Ap pSettings[ "ReportSer vicePath"] ; | |
| 2908 | appSetti ngs.Report BuilderPat h = WebCon figuration Manager.Ap pSettings[ "ReportBui lderPath"] ; | |
| 2909 | ||
| 2910 | appSetti ngs.SSOiLo goutUrl = WebConfigu rationMana ger.AppSet tings["SSO iLogoutUrl "]; | |
| 2911 | ||
| 2912 | SETTINGS setting = VIRPManag er.SETTING S_GET_REGI STRYNAME(i dentity, r egistryId, "EtlSched ule"); | |
| 2913 | if (sett ing != nul l) | |
| 2914 | appS ettings.Et lSchedule = setting. VALUE; | |
| 2915 | ||
| 2916 | setting = VIRPMana ger.SETTIN GS_GET_REG ISTRYNAME( identity, registryId , "EtlRetr yAttempts" ); | |
| 2917 | if (sett ing != nul l) | |
| 2918 | { | |
| 2919 | int value = 0; | |
| 2920 | int. TryParse(s etting.VAL UE, out va lue); | |
| 2921 | appS ettings.Et lRetryAtte mpts = val ue; | |
| 2922 | } | |
| 2923 | ||
| 2924 | setting = VIRPMana ger.SETTIN GS_GET_REG ISTRYNAME( identity, registryId , "EtlTime BetweenAtt empts"); | |
| 2925 | if (sett ing != nul l) | |
| 2926 | { | |
| 2927 | int value = 0; | |
| 2928 | int. TryParse(s etting.VAL UE, out va lue); | |
| 2929 | appS ettings.Et lTimeBetwe enAttempts = value; | |
| 2930 | } | |
| 2931 | ||
| 2932 | setting = VIRPMana ger.SETTIN GS_GET_REG ISTRYNAME( identity, registryId , "HomePag eText"); | |
| 2933 | if (sett ing != nul l) | |
| 2934 | appS ettings.Ho mePageText = setting .VALUE; | |
| 2935 | ||
| 2936 | return a ppSettings ; | |
| 2937 | } | |
| 2938 | ||
| 2939 | [O perationCo ntract] | |
| 2940 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/APPSET TINGS_GET? identity={ identity}& registryId ={registry Id}")] | |
| 2941 | pu blic AppSe ttings APP SETTINGS_G ET_XML(str ing identi ty, int re gistryId) | |
| 2942 | { | |
| 2943 | return t his.APPSET TINGS_GET( identity, registryId ); | |
| 2944 | } | |
| 2945 | ||
| 2946 | [O perationCo ntract] | |
| 2947 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/APPS ETTINGS_GE T?identity ={identity }®istry Id={regist ryId}")] | |
| 2948 | pu blic AppSe ttings APP SETTINGS_G ET_JSON(st ring ident ity, int r egistryId) | |
| 2949 | { | |
| 2950 | return t his.APPSET TINGS_GET( identity, registryId ); | |
| 2951 | } | |
| 2952 | ||
| 2953 | [W ebMethod] | |
| 2954 | pu blic bool APPSETTING S_SAVE(str ing identi ty, int re gistryId, AppSetting s appSetti ngs) | |
| 2955 | { | |
| 2956 | bool obj Return = f alse; | |
| 2957 | ||
| 2958 | if (appS ettings != null) | |
| 2959 | { | |
| 2960 | Conf iguration myConfig = WebConfig urationMan ager.OpenW ebConfigur ation("~") ; | |
| 2961 | if ( myConfig ! = null) | |
| 2962 | { | |
| 2963 | myConfig.A ppSettings .Settings[ "SqlComman dTimeout"] .Value = a ppSettings .SqlComman dTimeout.T oString(); | |
| 2964 | myConfig.A ppSettings .Settings[ "LogFileSi ze"].Value = appSett ings.LogFi leSize.ToS tring(); | |
| 2965 | myConfig.A ppSettings .Settings[ "LogFileAr chive"].Va lue = appS ettings.Lo gFileArchi ve.ToStrin g(); | |
| 2966 | myConfig.A ppSettings .Settings[ "LogErrors "].Value = appSettin gs.LogErro rs.ToStrin g(); | |
| 2967 | myConfig.A ppSettings .Settings[ "LogInform ation"].Va lue = appS ettings.Lo gInformati on.ToStrin g(); | |
| 2968 | myConfig.A ppSettings .Settings[ "LogTiming "].Value = appSettin gs.LogTimi ng.ToStrin g(); | |
| 2969 | myConfig.A ppSettings .Settings[ "DatabaseL ogEnabled" ].Value = appSetting s.Database LogEnabled .ToString( ); | |
| 2970 | myConfig.A ppSettings .Settings[ "EventLogE nabled"].V alue = app Settings.E ventLogEna bled.ToStr ing(); | |
| 2971 | myConfig.A ppSettings .Settings[ "FileLogEn abled"].Va lue = appS ettings.Fi leLogEnabl ed.ToStrin g(); | |
| 2972 | myConfig.A ppSettings .Settings[ "FileLogPa th"].Value = appSett ings.FileL ogPath; | |
| 2973 | myConfig.A ppSettings .Settings[ "MviEnable d"].Value = appSetti ngs.MviEna bled.ToStr ing(); | |
| 2974 | myConfig.A ppSettings .Settings[ "MviProces singCode"] .Value = a ppSettings .MviProces singCode; | |
| 2975 | myConfig.A ppSettings .Settings[ "MviCertNa me"].Value = appSett ings.MviCe rtName; | |
| 2976 | myConfig.A ppSettings .Settings[ "MviServic eUrl"].Val ue = appSe ttings.Mvi ServiceUrl ; | |
| 2977 | myConfig.A ppSettings .Settings[ "ReportSer verUrl"].V alue = app Settings.R eportServe rUrl; | |
| 2978 | myConfig.A ppSettings .Settings[ "ReportSer vicePath"] .Value = a ppSettings .ReportSer vicePath; | |
| 2979 | myConfig.A ppSettings .Settings[ "ReportBui lderPath"] .Value = a ppSettings .ReportBui lderPath; | |
| 2980 | myConfig.A ppSettings .Settings[ "SSOiLogou tUrl"].Val ue = appSe ttings.SSO iLogoutUrl ; | |
| 2981 | myConfig.S ave(Config urationSav eMode.Modi fied); | |
| 2982 | ||
| 2983 | VIRPManage r.SETTINGS _SAVE_ALL( identity, registryId , appSetti ngs); | |
| 2984 | ||
| 2985 | objReturn = true; | |
| 2986 | } | |
| 2987 | } | |
| 2988 | ||
| 2989 | return o bjReturn; | |
| 2990 | } | |
| 2991 | ||
| 2992 | [O perationCo ntract] | |
| 2993 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/APPSET TINGS_SAVE ?identity= {identity} ®istryI d={registr yId}&appSe ttings={ap pSettings} ")] | |
| 2994 | pu blic bool APPSETTING S_SAVE_XML (string id entity, in t registry Id, AppSet tings appS ettings) | |
| 2995 | { | |
| 2996 | return t his.APPSET TINGS_SAVE (identity, registryI d, appSett ings); | |
| 2997 | } | |
| 2998 | ||
| 2999 | [O perationCo ntract] | |
| 3000 | [W ebInvoke(M ethod = "P UT", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/APPS ETTINGS_SA VE?identit y={identit y}®istr yId={regis tryId}&app Settings={ appSetting s}")] | |
| 3001 | pu blic bool APPSETTING S_SAVE_JSO N(string i dentity, i nt registr yId, AppSe ttings app Settings) | |
| 3002 | { | |
| 3003 | return t his.APPSET TINGS_SAVE (identity, registryI d, appSett ings); | |
| 3004 | } | |
| 3005 | ||
| 3006 | #e ndregion | |
| 3007 | ||
| 3008 | #r egion MVI | |
| 3009 | ||
| 3010 | [W ebMethod] | |
| 3011 | pu blic bool PRPA_IN201 305UV02(st ring ident ity, int r egistryId, int patie ntId, int mviTypeId) | |
| 3012 | { | |
| 3013 | return V IRPManager .PRPA_IN20 1305UV02(i dentity, r egistryId, patientId , mviTypeI d); | |
| 3014 | } | |
| 3015 | ||
| 3016 | [O perationCo ntract] | |
| 3017 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/PRPA_I N201305UV0 2?identity ={identity }®istry Id={regist ryId}&pati entId={pat ientId}&mv iTypeId={m viTypeId}" )] | |
| 3018 | pu blic bool PRPA_IN201 305UV02_XM L(string i dentity, i nt registr yId, int p atientId, int mviTyp eId) | |
| 3019 | { | |
| 3020 | return t his.PRPA_I N201305UV0 2(identity , registry Id, patien tId, mviTy peId); | |
| 3021 | } | |
| 3022 | ||
| 3023 | [O perationCo ntract] | |
| 3024 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/PRPA _IN201305U V02?identi ty={identi ty}®ist ryId={regi stryId}&pa tientId={p atientId}& mviTypeId= {mviTypeId }")] | |
| 3025 | pu blic bool PRPA_IN201 305UV02_JS ON(string identity, int regist ryId, int patientId, int mviTy peId) | |
| 3026 | { | |
| 3027 | return t his.PRPA_I N201305UV0 2(identity , registry Id, patien tId, mviTy peId); | |
| 3028 | } | |
| 3029 | ||
| 3030 | [W ebMethod] | |
| 3031 | pu blic bool PRPA_IN201 309UV02(st ring ident ity, int r egistryId, int patie ntId) | |
| 3032 | { | |
| 3033 | return V IRPManager .PRPA_IN20 1309UV02(i dentity, r egistryId, patientId ); | |
| 3034 | } | |
| 3035 | ||
| 3036 | [O perationCo ntract] | |
| 3037 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/PRPA_I N201309UV0 2?identity ={identity }®istry Id={regist ryId}&pati entId={pat ientId}")] | |
| 3038 | pu blic bool PRPA_IN201 309UV02_XM L(string i dentity, i nt registr yId, int p atientId) | |
| 3039 | { | |
| 3040 | return t his.PRPA_I N201309UV0 2(identity , registry Id, patien tId); | |
| 3041 | } | |
| 3042 | ||
| 3043 | [O perationCo ntract] | |
| 3044 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/PRPA _IN201309U V02?identi ty={identi ty}®ist ryId={regi stryId}&pa tientId={p atientId}" )] | |
| 3045 | pu blic bool PRPA_IN201 309UV02_JS ON(string identity, int regist ryId, int patientId) | |
| 3046 | { | |
| 3047 | return t his.PRPA_I N201309UV0 2(identity , registry Id, patien tId); | |
| 3048 | } | |
| 3049 | ||
| 3050 | #e ndregion | |
| 3051 | ||
| 3052 | [W ebMethod] | |
| 3053 | pu blic List< ENC_ENCOUN TER> ENC_E NCOUNTER_G ET_BY_REFE RRAL(strin g identity , int regi stryId, in t referral Id) | |
| 3054 | { | |
| 3055 | return V IRPManager .ENC_ENCOU NTER_GET_B Y_REFERRAL (identity, registryI d, referra lId); | |
| 3056 | } | |
| 3057 | ||
| 3058 | [O perationCo ntract] | |
| 3059 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/ENC_EN COUNTER_GE T_BY_REFER RAL?identi ty={identi ty}®ist ryId={regi stryId}&re ferralId={ referralId }")] | |
| 3060 | pu blic List< ENC_ENCOUN TER> ENC_E NCOUNTER_G ET_BY_REFE RRAL_XML(s tring iden tity, int registryId , int refe rralId) | |
| 3061 | { | |
| 3062 | return t his.ENC_EN COUNTER_GE T_BY_REFER RAL(identi ty, regist ryId, refe rralId); | |
| 3063 | } | |
| 3064 | ||
| 3065 | [O perationCo ntract] | |
| 3066 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/ENC_ ENCOUNTER_ GET_BY_REF ERRAL?iden tity={iden tity}®i stryId={re gistryId}& referralId ={referral Id}")] | |
| 3067 | pu blic List< ENC_ENCOUN TER> ENC_E NCOUNTER_G ET_BY_REFE RRAL_JSON( string ide ntity, int registryI d, int ref erralId) | |
| 3068 | { | |
| 3069 | return t his.ENC_EN COUNTER_GE T_BY_REFER RAL(identi ty, regist ryId, refe rralId); | |
| 3070 | } | |
| 3071 | ||
| 3072 | [W ebMethod] | |
| 3073 | pu blic List< OUTPAT_VIS IT> OUTPAT _VISIT_GET _BY_REFERR AL(string identity, int regist ryId, int referralId ) | |
| 3074 | { | |
| 3075 | return V IRPManager .OUTPAT_VI SIT_GET_BY _REFERRAL( identity, registryId , referral Id); | |
| 3076 | } | |
| 3077 | ||
| 3078 | [O perationCo ntract] | |
| 3079 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/OUTPAT _VISIT_GET _BY_REFERR AL?identit y={identit y}®istr yId={regis tryId}&ref erralId={r eferralId} ")] | |
| 3080 | pu blic List< OUTPAT_VIS IT> OUTPAT _VISIT_GET _BY_REFERR AL_XML(str ing identi ty, int re gistryId, int referr alId) | |
| 3081 | { | |
| 3082 | return t his.OUTPAT _VISIT_GET _BY_REFERR AL(identit y, registr yId, refer ralId); | |
| 3083 | } | |
| 3084 | ||
| 3085 | [O perationCo ntract] | |
| 3086 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/OUTP AT_VISIT_G ET_BY_REFE RRAL?ident ity={ident ity}®is tryId={reg istryId}&r eferralId= {referralI d}")] | |
| 3087 | pu blic List< OUTPAT_VIS IT> OUTPAT _VISIT_GET _BY_REFERR AL_JSON(st ring ident ity, int r egistryId, int refer ralId) | |
| 3088 | { | |
| 3089 | return t his.OUTPAT _VISIT_GET _BY_REFERR AL(identit y, registr yId, refer ralId); | |
| 3090 | } | |
| 3091 | ||
| 3092 | [W ebMethod] | |
| 3093 | pu blic strin g GET_VERS ION() | |
| 3094 | { | |
| 3095 | return V IRPManager .GET_VERSI ON(); | |
| 3096 | } | |
| 3097 | ||
| 3098 | [O perationCo ntract] | |
| 3099 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "/ Xml/GET_VE RSION")] | |
| 3100 | pu blic strin g GET_VERS ION_XML(st ring ident ity, int r egistryId, int refer ralId) | |
| 3101 | { | |
| 3102 | return t his.GET_VE RSION(); | |
| 3103 | } | |
| 3104 | ||
| 3105 | [O perationCo ntract] | |
| 3106 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " /Json/GET_ VERSION")] | |
| 3107 | pu blic strin g GET_VERS ION_JSON(s tring iden tity, int registryId , int refe rralId) | |
| 3108 | { | |
| 3109 | return t his.GET_VE RSION(); | |
| 3110 | } | |
| 3111 | } | |
| 3112 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.