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