Made the repository interfaces asynchronous with Task or Task<T> returns.
302bca40
Pedro Silva
committed
succeeded
4 changed files
D20Tek.Common.xml
/D20Tek.Common/D20Tek.Common.xml-1+4
/D20Tek.Common/D20Tek.Common.xml
Add comment 433 Creates a new entity in the repository.
Add comment 434 </summary>
Add comment 435 <param name="entity">Entity to create.</param>
Add comment 436 Plus   <returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the asynchronous operation.</returns>
Add comment 436 437 </member>
Add comment 437 438 <member name="M:D20Tek.Common.Models.IEditableRepository`2.Update(`0)">
Add comment 438 439 <summary>
Add comment 439 440 Updates an existing entity in the repository.
Add comment 440 441 </summary>
Add comment 441 442 <param name="entity">Entity to update.</param>
Add comment 443 Plus   <returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the asynchronous operation.</returns>
Add comment 442 444 </member>
Add comment 443 445 <member name="M:D20Tek.Common.Models.IEditableRepository`2.Delete(`1)">
Add comment 444 446 <summary>
Add comment 445 447 Deletes an entity from this repository by its Id.
Add comment 446 448 </summary>
Add comment 447 Minus   <param name="entity">Id of entity to delete.</param>
Add comment 449 Plus   <param name="id">Id of entity to delete.</param>
Add comment 450 Plus   <returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the asynchronous operation.</returns>
Add comment 448 451 </member>
Add comment 449 452 <member name="T:D20Tek.Common.Models.IReadableRepository`2">
Add comment 450 453 <summary>
IEditableRepository.cs
/D20Tek.Common.Shared/Models/IEditableRepository.cs-4+8
/D20Tek.Common.Shared/Models/IEditableRepository.cs
Add comment 8 // </summary>
Add comment 9 //-----------------------------------------------------------------------
Add comment 10 using D20Tek.Common.DataTypes;
Add comment 11 Plus  using System.Threading.Tasks;
Add comment 11 12
Add comment 12 13 namespace D20Tek.Common.Models
Add comment 13 14 {
Add comment 24 25 /// Creates a new entity in the repository.
Add comment 25 26 /// </summary>
Add comment 26 27 /// <param name="entity">Entity to create.</param>
Add comment 27 Minus   void Create(T entity);
Add comment 28 Plus   /// <returns>A <see cref="Task"/> representing the asynchronous operation.</returns>
Add comment 29 Plus   Task Create(T entity);
Add comment 28 30
Add comment 29 31 /// <summary>
Add comment 30 32 /// Updates an existing entity in the repository.
Add comment 31 33 /// </summary>
Add comment 32 34 /// <param name="entity">Entity to update.</param>
Add comment 33 Minus   void Update(T entity);
Add comment 35 Plus   /// <returns>A <see cref="Task"/> representing the asynchronous operation.</returns>
Add comment 36 Plus   Task Update(T entity);
Add comment 34 37
Add comment 35 38 /// <summary>
Add comment 36 39 /// Deletes an entity from this repository by its Id.
Add comment 37 40 /// </summary>
Add comment 38 Minus   /// <param name="entity">Id of entity to delete.</param>
Add comment 39 Minus   void Delete(TId entity);
Add comment 41 Plus   /// <param name="id">Id of entity to delete.</param>
Add comment 42 Plus   /// <returns>A <see cref="Task"/> representing the asynchronous operation.</returns>
Add comment 43 Plus   Task Delete(TId id);
Add comment 40 44 }
Add comment 41 45 }
Add comment 42 46
IReadableRepository.cs
/D20Tek.Common.Shared/Models/IReadableRepository.cs-2+3
/D20Tek.Common.Shared/Models/IReadableRepository.cs
Add comment 9 //-----------------------------------------------------------------------
Add comment 10 using D20Tek.Common.DataTypes;
Add comment 11 using System.Collections.Generic;
Add comment 12 Plus  using System.Threading.Tasks;
Add comment 12 13
Add comment 13 14 namespace D20Tek.Common.Models
Add comment 14 15 {
Add comment 25 26 /// Gets all of the entities as an enumerable.
Add comment 26 27 /// </summary>
Add comment 27 28 /// <returns>Enumerable of entities.</returns>
Add comment 28 Minus   IEnumerable<T> GetAll();
Add comment 29 Plus   Task<IEnumerable<T>> GetAll();
Add comment 29 30
Add comment 30 31 /// <summary>
Add comment 31 32 /// Gets an entity from this repository by its Id.
Add comment 32 33 /// </summary>
Add comment 33 34 /// <param name="id">Id to search by.</param>
Add comment 34 35 /// <returns>Entity that was searched for; null if not found.</returns>
Add comment 35 Minus   T GetEntityById(TId id);
Add comment 36 Plus   Task<T> GetEntityById(TId id);
Add comment 36 37 }
Add comment 37 38 }
Add comment 38 39
D20Tek.Common.Standard.xml
/D20Tek.Common.Standard/D20Tek.Common.Standard.xml-1+4
/D20Tek.Common.Standard/D20Tek.Common.Standard.xml
Add comment 418 Creates a new entity in the repository.
Add comment 419 </summary>
Add comment 420 <param name="entity">Entity to create.</param>
Add comment 421 Plus   <returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the asynchronous operation.</returns>
Add comment 421 422 </member>
Add comment 422 423 <member name="M:D20Tek.Common.Models.IEditableRepository`2.Update(`0)">
Add comment 423 424 <summary>
Add comment 424 425 Updates an existing entity in the repository.
Add comment 425 426 </summary>
Add comment 426 427 <param name="entity">Entity to update.</param>
Add comment 428 Plus   <returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the asynchronous operation.</returns>
Add comment 427 429 </member>
Add comment 428 430 <member name="M:D20Tek.Common.Models.IEditableRepository`2.Delete(`1)">
Add comment 429 431 <summary>
Add comment 430 432 Deletes an entity from this repository by its Id.
Add comment 431 433 </summary>
Add comment 432 Minus   <param name="entity">Id of entity to delete.</param>
Add comment 434 Plus   <param name="id">Id of entity to delete.</param>
Add comment 435 Plus   <returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the asynchronous operation.</returns>
Add comment 433 436 </member>
Add comment 434 437 <member name="T:D20Tek.Common.Models.IReadableRepository`2">
Add comment 435 438 <summary>