@@ -48,51 +48,51 @@ public interface IConsumer<TSingle, TMultiple, TPrimaryKey> : IPayloadSerialisab
4848 /// Retrieve the current Changes Since marker.
4949 /// <para>HEAD /StudentPersonals</para>
5050 /// </summary>
51- /// <param name="zone ">Zone associated with the request.</param>
52- /// <param name="context ">Zone context.</param>
51+ /// <param name="zoneId ">Zone associated with the request.</param>
52+ /// <param name="contextId ">Zone context.</param>
5353 /// <returns>Changes Since marker.</returns>
54- string GetChangesSinceMarker ( string zone = null , string context = null ) ;
54+ string GetChangesSinceMarker ( string zoneId = null , string contextId = null ) ;
5555
5656 /// <summary>
5757 /// Create a single object.
5858 /// <para>POST /StudentPersonals/StudentPersonal</para>
5959 /// </summary>
6060 /// <param name="obj">Object to create.</param>
61- /// <param name="zone ">Zone associated with the request.</param>
62- /// <param name="context ">Zone context.</param>
61+ /// <param name="zoneId ">Zone associated with the request.</param>
62+ /// <param name="contextId ">Zone context.</param>
6363 /// <returns>Created object.</returns>
64- TSingle Create ( TSingle obj , string zone = null , string context = null ) ;
64+ TSingle Create ( TSingle obj , string zoneId = null , string contextId = null ) ;
6565
6666 /// <summary>
6767 /// Create multiple objects.
6868 /// <para>POST /StudentPersonals</para>
6969 /// </summary>
7070 /// <param name="obj">Object (multiple object entity) to create.</param>
71- /// <param name="zone ">Zone associated with the request.</param>
72- /// <param name="context ">Zone context.</param>
71+ /// <param name="zoneId ">Zone associated with the request.</param>
72+ /// <param name="contextId ">Zone context.</param>
7373 /// <returns>Response containing status of each object created.</returns>
74- MultipleCreateResponse Create ( TMultiple obj , string zone = null , string context = null ) ;
74+ MultipleCreateResponse Create ( TMultiple obj , string zoneId = null , string contextId = null ) ;
7575
7676 /// <summary>
7777 /// Retrieve a single object.
7878 /// <para>GET /StudentPersonals/{id}</para>
7979 /// </summary>
8080 /// <param name="refId">SIF identifier of the object.</param>
81- /// <param name="zone ">Zone associated with the request.</param>
82- /// <param name="context ">Zone context.</param>
81+ /// <param name="zoneId ">Zone associated with the request.</param>
82+ /// <param name="contextId ">Zone context.</param>
8383 /// <returns>Retrieved object.</returns>
84- TSingle Query ( TPrimaryKey refId , string zone = null , string context = null ) ;
84+ TSingle Query ( TPrimaryKey refId , string zoneId = null , string contextId = null ) ;
8585
8686 /// <summary>
8787 /// Retrieve all objects.
8888 /// <para>GET /StudentPersonals</para>
8989 /// </summary>
9090 /// <param name="navigationPage">Current paging index.</param>
9191 /// <param name="navigationPageSize">Page size.</param>
92- /// <param name="zone ">Zone associated with the request.</param>
93- /// <param name="context ">Zone context.</param>
92+ /// <param name="zoneId ">Zone associated with the request.</param>
93+ /// <param name="contextId ">Zone context.</param>
9494 /// <returns>Retrieved objects.</returns>
95- TMultiple Query ( uint ? navigationPage = null , uint ? navigationPageSize = null , string zone = null , string context = null ) ;
95+ TMultiple Query ( uint ? navigationPage = null , uint ? navigationPageSize = null , string zoneId = null , string contextId = null ) ;
9696
9797 /// <summary>
9898 /// Retrieve multiple objects using Query by Example.
@@ -101,10 +101,10 @@ public interface IConsumer<TSingle, TMultiple, TPrimaryKey> : IPayloadSerialisab
101101 /// <param name="obj">Example object.</param>
102102 /// <param name="navigationPage">Current paging index.</param>
103103 /// <param name="navigationPageSize">Page size.</param>
104- /// <param name="zone ">Zone associated with the request.</param>
105- /// <param name="context ">Zone context.</param>
104+ /// <param name="zoneId ">Zone associated with the request.</param>
105+ /// <param name="contextId ">Zone context.</param>
106106 /// <returns>Retrieved objects.</returns>
107- TMultiple QueryByExample ( TSingle obj , uint ? navigationPage = null , uint ? navigationPageSize = null , string zone = null , string context = null ) ;
107+ TMultiple QueryByExample ( TSingle obj , uint ? navigationPage = null , uint ? navigationPageSize = null , string zoneId = null , string contextId = null ) ;
108108
109109 /// <summary>
110110 /// Retrieve multiple objects using Service Paths.
@@ -115,10 +115,10 @@ public interface IConsumer<TSingle, TMultiple, TPrimaryKey> : IPayloadSerialisab
115115 /// <param name="conditions">Service Path conditions.</param>
116116 /// <param name="navigationPage">Current paging index.</param>
117117 /// <param name="navigationPageSize">Page size.</param>
118- /// <param name="zone ">Zone associated with the request.</param>
119- /// <param name="context ">Zone context.</param>
118+ /// <param name="zoneId ">Zone associated with the request.</param>
119+ /// <param name="contextId ">Zone context.</param>
120120 /// <returns>Retrieved objects.</returns>
121- TMultiple QueryByServicePath ( IEnumerable < EqualCondition > conditions , uint ? navigationPage = null , uint ? navigationPageSize = null , string zone = null , string context = null ) ;
121+ TMultiple QueryByServicePath ( IEnumerable < EqualCondition > conditions , uint ? navigationPage = null , uint ? navigationPageSize = null , string zoneId = null , string contextId = null ) ;
122122
123123 /// <summary>
124124 /// Retrieve multiple objects based on the Changes Since marker.
@@ -128,48 +128,48 @@ public interface IConsumer<TSingle, TMultiple, TPrimaryKey> : IPayloadSerialisab
128128 /// <param name="nextChangesSinceMarker">Next Changes Since marker.</param>
129129 /// <param name="navigationPage">Current paging index.</param>
130130 /// <param name="navigationPageSize">Page size.</param>
131- /// <param name="zone ">Zone associated with the request.</param>
132- /// <param name="context ">Zone context.</param>
131+ /// <param name="zoneId ">Zone associated with the request.</param>
132+ /// <param name="contextId ">Zone context.</param>
133133 /// <returns>Retrieved objects.</returns>
134- TMultiple QueryChangesSince ( string changesSinceMarker , out string nextChangesSinceMarker , uint ? navigationPage = null , uint ? navigationPageSize = null , string zone = null , string context = null ) ;
134+ TMultiple QueryChangesSince ( string changesSinceMarker , out string nextChangesSinceMarker , uint ? navigationPage = null , uint ? navigationPageSize = null , string zoneId = null , string contextId = null ) ;
135135
136136 /// <summary>
137137 /// Update a single object.
138138 /// <para>PUT /StudentPersonals/{id}</para>
139139 /// </summary>
140140 /// <param name="obj">Object to update.</param>
141- /// <param name="zone ">Zone associated with the request.</param>
142- /// <param name="context ">Zone context.</param>
143- void Update ( TSingle obj , string zone = null , string context = null ) ;
141+ /// <param name="zoneId ">Zone associated with the request.</param>
142+ /// <param name="contextId ">Zone context.</param>
143+ void Update ( TSingle obj , string zoneId = null , string contextId = null ) ;
144144
145145 /// <summary>
146146 /// Update multiple objects.
147147 /// <para>PUT /StudentPersonals</para>
148148 /// </summary>
149149 /// <param name="obj">Object (multiple object entity) to update.</param>
150- /// <param name="zone ">Zone associated with the request.</param>
151- /// <param name="context ">Zone context.</param>
150+ /// <param name="zoneId ">Zone associated with the request.</param>
151+ /// <param name="contextId ">Zone context.</param>
152152 /// <returns>Response containing status of each object updated.</returns>
153- MultipleUpdateResponse Update ( TMultiple obj , string zone = null , string context = null ) ;
153+ MultipleUpdateResponse Update ( TMultiple obj , string zoneId = null , string contextId = null ) ;
154154
155155 /// <summary>
156156 /// Delete a single object.
157157 /// <para>DELETE /StudentPersonals/{id}</para>
158158 /// </summary>
159159 /// <param name="refId">SIF identifier of the object.</param>
160- /// <param name="zone ">Zone associated with the request.</param>
161- /// <param name="context ">Zone context.</param>
162- void Delete ( TPrimaryKey refId , string zone = null , string context = null ) ;
160+ /// <param name="zoneId ">Zone associated with the request.</param>
161+ /// <param name="contextId ">Zone context.</param>
162+ void Delete ( TPrimaryKey refId , string zoneId = null , string contextId = null ) ;
163163
164164 /// <summary>
165165 /// Delete multiple objects.
166166 /// <para>PUT /StudentPersonals (methodOverride: DELETE)</para>
167167 /// </summary>
168168 /// <param name="refIds">SIF identifiers of the objects.</param>
169- /// <param name="zone ">Zone associated with the request.</param>
170- /// <param name="context ">Zone context.</param>
169+ /// <param name="zoneId ">Zone associated with the request.</param>
170+ /// <param name="contextId ">Zone context.</param>
171171 /// <returns>Response containing status of each object deleted.</returns>
172- MultipleDeleteResponse Delete ( IEnumerable < TPrimaryKey > refIds , string zone = null , string context = null ) ;
172+ MultipleDeleteResponse Delete ( IEnumerable < TPrimaryKey > refIds , string zoneId = null , string contextId = null ) ;
173173
174174 }
175175
0 commit comments