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 | CohortServices.cs | Thu Dec 7 15:50:20 2017 UTC |
| 2 | VIRP_CiF.zip\Registries VIRP Service | CohortServices.cs | Tue Dec 19 20:50:38 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 3 | 238 |
| 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.Collect ions.Gener ic; | |
| 3 | using Syst em.Web; | |
| 4 | using Syst em.Web.Ser vices; | |
| 5 | using Syst em.Service Model; | |
| 6 | using Syst em.Service Model.Web; | |
| 7 | using Syst em.Service Model.Acti vation; | |
| 8 | using VIRP .CRS.BLL; | |
| 9 | using VIRP .CRS.BO; | |
| 10 | ||
| 11 | namespace VIRP_SERVI CE | |
| 12 | { | |
| 13 | [WebServic e(Namespac e = "http: // URL . DNS ")] | |
| 14 | [WebSe rviceBindi ng(Conform sTo = WsiP rofiles.Ba sicProfile 1_1)] | |
| 15 | [WebServic eBindingAt tribute(Na me = "Coho rtServices ", Namespa ce = "http :// URL . DNS ")] | |
| 16 | [ServiceCo ntract(Nam e = "Cohor tServices" , Namespac e = "http: // URL . DNS ")] | |
| 17 | [Syste m.Componen tModel.Too lboxItem(f alse)] | |
| 18 | [AspNe tCompatibi lityRequir ements(Req uirementsM ode = AspN etCompatib ilityRequi rementsMod e.Allowed) ] | |
| 19 | [Servi ceBehavior (InstanceC ontextMode = Instanc eContextMo de.Single) ] | |
| 20 | public class Coh ortService s : System .Web.Servi ces.WebSer vice | |
| 21 | { | |
| 22 | [W ebMethod] | |
| 23 | pu blic List< STD_REGIST RY> GetCoh orts() | |
| 24 | { | |
| 25 | return V IRPManager .STD_REGIS TRY_GET_AL L(HttpCont ext.Curren t.User.Ide ntity.Name , 0); | |
| 26 | } | |
| 27 | ||
| 28 | [W ebMethod] | |
| 29 | pu blic List< REGISTRY_C OHORT_DATA > GetCohor tCriteria( Int32 STD_ REGISTRY_I D) | |
| 30 | { | |
| 31 | return V IRPManager .REGISTRY_ COHORT_DAT A_GET_ALL_ BY_REGISTR Y(HttpCont ext.Curren t.User.Ide ntity.Name , STD_REGI STRY_ID); | |
| 32 | } | |
| 33 | ||
| 34 | [W ebMethod] | |
| 35 | pu blic List< PATIENT> G etCohortPa tientList( Int32 STD_ REGISTRY_I D) | |
| 36 | { | |
| 37 | return V IRPManager .PATIENT_G ET_ALL_BY_ REGISTRY(H ttpContext .Current.U ser.Identi ty.Name, S TD_REGISTR Y_ID); | |
| 38 | } | |
| 39 | ||
| 40 | [W ebMethod] | |
| 41 | pu blic PATIE NT GetPati entCohortE valuationR esults(Int 32 PATIENT _ID) | |
| 42 | { | |
| 43 | return V IRPManager .PATIENT_G ET(HttpCon text.Curre nt.User.Id entity.Nam e, 0, PATI ENT_ID); | |
| 44 | } | |
| 45 | ||
| 46 | [W ebMethod] | |
| 47 | pu blic PATIE NT GetPati entData(In t32 PATIEN T_ID) | |
| 48 | { | |
| 49 | return V IRPManager .PATIENT_G ET(HttpCon text.Curre nt.User.Id entity.Nam e, 0, PATI ENT_ID); | |
| 50 | } | |
| 51 | ||
| 52 | [O perationCo ntract] | |
| 53 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "X ml/GetCoho rts")] | |
| 54 | pu blic List< STD_REGIST RY> GetCoh ortsXml() | |
| 55 | { | |
| 56 | return t his.GetCoh orts(); | |
| 57 | } | |
| 58 | ||
| 59 | [O perationCo ntract] | |
| 60 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "X ml/GetCoho rtCriteria ?id={STD_R EGISTRY_ID }")] | |
| 61 | pu blic List< REGISTRY_C OHORT_DATA > GetCohor tCriteriaX ml(Int32 S TD_REGISTR Y_ID) | |
| 62 | { | |
| 63 | return t his.GetCoh ortCriteri a(STD_REGI STRY_ID); | |
| 64 | } | |
| 65 | ||
| 66 | [O perationCo ntract] | |
| 67 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "X ml/GetCoho rtPatientL ist?id={ST D_REGISTRY _ID}")] | |
| 68 | pu blic List< PATIENT> G etCohortPa tientListX ml(Int32 S TD_REGISTR Y_ID) | |
| 69 | { | |
| 70 | return t his.GetCoh ortPatient List(STD_R EGISTRY_ID ); | |
| 71 | } | |
| 72 | ||
| 73 | [O perationCo ntract] | |
| 74 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "X ml/GetPati entCohortE valuationR esults?id= {PATIENT_I D}")] | |
| 75 | pu blic PATIE NT GetPati entCohortE valuationR esultsXml( Int32 PATI ENT_ID) | |
| 76 | { | |
| 77 | return t his.GetPat ientCohort Evaluation Results(PA TIENT_ID); | |
| 78 | } | |
| 79 | ||
| 80 | [O perationCo ntract] | |
| 81 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.X ml, UriTem plate = "X ml/GetPati entData?id ={PATIENT_ ID}")] | |
| 82 | pu blic PATIE NT GetPati entDataXml (Int32 PAT IENT_ID) | |
| 83 | { | |
| 84 | return t his.GetPat ientData(P ATIENT_ID) ; | |
| 85 | } | |
| 86 | ||
| 87 | [O perationCo ntract] | |
| 88 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " Json/GetCo horts")] | |
| 89 | pu blic List< STD_REGIST RY> GetCoh ortsJson() | |
| 90 | { | |
| 91 | return t his.GetCoh orts(); | |
| 92 | } | |
| 93 | ||
| 94 | [O perationCo ntract] | |
| 95 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " Json/GetCo hortCriter ia?id={STD _REGISTRY_ ID}")] | |
| 96 | pu blic List< REGISTRY_C OHORT_DATA > GetCohor tCriteriaJ son(Int32 STD_REGIST RY_ID) | |
| 97 | { | |
| 98 | return t his.GetCoh ortCriteri a(STD_REGI STRY_ID); | |
| 99 | } | |
| 100 | ||
| 101 | [O perationCo ntract] | |
| 102 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " Json/GetCo hortPatien tList?id={ STD_REGIST RY_ID}")] | |
| 103 | pu blic List< PATIENT> G etCohortPa tientListJ son(Int32 STD_REGIST RY_ID) | |
| 104 | { | |
| 105 | return t his.GetCoh ortPatient List(STD_R EGISTRY_ID ); | |
| 106 | } | |
| 107 | ||
| 108 | [O perationCo ntract] | |
| 109 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " Json/GetPa tientCohor tEvaluatio nResults?i d={PATIENT _ID}")] | |
| 110 | pu blic PATIE NT GetPati entCohortE valuationR esultsJson (Int32 PAT IENT_ID) | |
| 111 | { | |
| 112 | return t his.GetPat ientCohort Evaluation Results(PA TIENT_ID); | |
| 113 | } | |
| 114 | ||
| 115 | [O perationCo ntract] | |
| 116 | [W ebInvoke(M ethod = "G ET", Respo nseFormat = WebMessa geFormat.J son, UriTe mplate = " Json/GetPa tientData? id={PATIEN T_ID}")] | |
| 117 | pu blic PATIE NT GetPati entDataJso n(Int32 PA TIENT_ID) | |
| 118 | { | |
| 119 | return t his.GetPat ientData(P ATIENT_ID) ; | |
| 120 | } | |
| 121 | } | |
| 122 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.