|
62 | 62 | /// Returns the data collection after performing data operations based on request from <see cref=”DataManagerRequest”/> |
63 | 63 | /// </summary> |
64 | 64 | /// <param name="DataManagerRequest">DataManagerRequest contains the information regarding paging, grouping, filtering, searching which is handled on the DataGrid component side</param> |
65 | | - /// <param name="key">An optional parameter that can be used to perform additional data operations.</param> |
| 65 | + /// <param name="Key">An optional parameter that can be used to perform additional data operations.</param> |
66 | 66 | /// <returns>The data collection's type is determined by how this method has been implemented.</returns> |
67 | 67 | public override async Task<object> ReadAsync(DataManagerRequest DataManagerRequest, string key = null) |
68 | 68 | { |
|
131 | 131 | /// <summary> |
132 | 132 | /// Inserts a new data item into the data collection. |
133 | 133 | /// </summary> |
134 | | - /// <param name="DataManager">The DataManager is a data management component used for performing data operations in applications.</param> |
| 134 | + /// <param name="DataManager">The DataManager is a data management component used for performing data operations in application.</param> |
135 | 135 | /// <param name="Value">The new record which is need to be inserted.</param> |
136 | 136 | /// <param name="Key">An optional parameter that can be used to perform additional data operations.</param> |
137 | 137 | /// <returns>Returns the newly inserted record details.</returns> |
|
144 | 144 | /// <summary> |
145 | 145 | /// Updates an existing data item in the data collection. |
146 | 146 | /// </summary> |
147 | | - /// <param name="DataManager">The DataManager is a data management component used for performing data operations in applications.</param> |
| 147 | + /// <param name="DataManager">The DataManager is a data management component used for performing data operations in application.</param> |
148 | 148 | /// <param name="Value">The modified record which is need to be updated.</param> |
149 | | - /// <param name="KeyField">The KeyField specifies the field name of the primary column.</param> |
| 149 | + /// <param name="KeyField">The Key field specifies the field name of the primary column.</param> |
150 | 150 | /// <param name="Key">An optional parameter that can be used to perform additional data operations.</param> |
151 | 151 | /// <returns>Returns the updated data item.</returns> |
152 | 152 | public override async Task<object> UpdateAsync(DataManager DataManager, object Value, string KeyField, string Key) |
|
159 | 159 | /// <summary> |
160 | 160 | /// Removes a data item from the data collection. |
161 | 161 | /// </summary> |
162 | | - /// <param name="DataManager">The DataManager is a data management component used for performing data operations in applications.</param> |
163 | | - /// <param name="Value">The primaryColumnValue specifies the primary column value which is needs to be removed from the grid record.</param> |
164 | | - /// <param name="KeyField">The primaryColumnName specifies the field name of the primary column.</param> |
| 162 | + /// <param name="DataManager">The DataManager is a data management component used for performing data operations in application.</param> |
| 163 | + /// <param name="Value">The primary column value specifies the primary column value which is needs to be removed from the grid record.</param> |
| 164 | + /// <param name="KeyField">The primary column name specifies the field name of the primary column.</param> |
165 | 165 | /// <param name="Key">An optional parameter that can be used to perform additional data operations.</param> |
166 | 166 | /// <returns>Returns the removed data item.</returns> |
167 | 167 | public override async Task<object> RemoveAsync(DataManager DataManager, object Value, string KeyField, string Key) |
|
0 commit comments