Ejemplo n.º 1
0
 /// <summary>
 /// Updates the specified Entity in the backing repository, as an asynchronous operation.
 /// </summary>
 /// <param name="entity">The Entity to update.</param>
 /// <returns>
 /// The System.Threading.Tasks.Task that represents the asynchronous operation, containing the KerykeionDbResult of the operation.
 /// </returns>
 public async Task <KerykeionDbResult> UpdateAsync(object entity)
 {
     return(await EntitiesRepo.UpdateAsync(entity));
 }