@@ -97,7 +97,7 @@ protected Dal()
9797 /// <summary>
9898 /// Write all the <see cref="Operation"/>s from all the <see cref="OperationContainer"/>s asynchronously.
9999 /// </summary>
100- /// <param name="operationContainer ">
100+ /// <param name="operationContainers ">
101101 /// The provided <see cref="OperationContainer"/> to write
102102 /// </param>
103103 /// <param name="files">
@@ -106,7 +106,7 @@ protected Dal()
106106 /// <returns>
107107 /// A list of <see cref="Thing"/>s that has been created or updated since the last Read or Write operation.
108108 /// </returns>
109- public abstract Task < IEnumerable < Thing > > Write ( IEnumerable < OperationContainer > operationContainer , IEnumerable < string > files = null ) ;
109+ public abstract Task < IEnumerable < Thing > > Write ( IEnumerable < OperationContainer > operationContainers , IEnumerable < string > files = null ) ;
110110
111111 /// <summary>
112112 /// Write all the <see cref="Operation"/>s from an <see cref="OperationContainer"/> asynchronously.
@@ -147,7 +147,7 @@ protected Dal()
147147 /// <param name="thing">
148148 /// An instance of <see cref="Thing"/> that needs to be read from the data-source
149149 /// </param>
150- /// <param name="token ">
150+ /// <param name="cancellationToken ">
151151 /// The <see cref="CancellationToken"/>
152152 /// </param>
153153 /// <param name="attributes">
@@ -156,7 +156,7 @@ protected Dal()
156156 /// <returns>
157157 /// a list of <see cref="Thing"/> that are contained by the provided <see cref="Thing"/> including the <see cref="Thing"/> itself
158158 /// </returns>
159- public abstract Task < IEnumerable < Thing > > Read < T > ( T thing , CancellationToken token , IQueryAttributes attributes = null ) where T : Thing ;
159+ public abstract Task < IEnumerable < Thing > > Read < T > ( T thing , CancellationToken cancellationToken , IQueryAttributes attributes = null ) where T : Thing ;
160160
161161 /// <summary>
162162 /// Reads the data related to the provided <see cref="CDP4Common.DTO.Iteration"/> from the data-source
0 commit comments