Skip to content

Commit

Permalink
forgot to set virtual in EfModelManager
Browse files Browse the repository at this point in the history
  • Loading branch information
EvilLord666 committed May 25, 2023
1 parent 8c286a8 commit 511ea8b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public virtual Task<OperationResultDto<TRes>> CreateAsync(TRes data)
/// <param name="data">Array of DTO with Model representation</param>
/// <returns>Array of DTO of a newly created objects</returns>
/// <exception cref="NotImplementedException"></exception>
public Task<OperationResultDto<TRes[]>> BulkCreateAsync(TRes[] data)
public virtual Task<OperationResultDto<TRes[]>> BulkCreateAsync(TRes[] data)
{
throw new NotImplementedException();
}
Expand All @@ -200,7 +200,7 @@ public virtual Task<OperationResultDto<TRes>> UpdateAsync(TId id, TRes data)
/// <param name="data">Array of DTO with Model representation</param>
/// <returns>Array of DTO of a updated objects</returns>
/// <exception cref="NotImplementedException"></exception>
public Task<OperationResultDto<TRes[]>> BulkUpdateAsync(TRes[] data)
public virtual Task<OperationResultDto<TRes[]>> BulkUpdateAsync(TRes[] data)
{
throw new NotImplementedException();
}
Expand Down Expand Up @@ -235,7 +235,7 @@ public async Task<OperationResultDto<bool>> DeleteAsync(TId id)
/// </summary>
/// <param name="objectsIds">item identifiers</param>
/// <returns>true if removal was successful, otherwise false</returns>
public Task<OperationResultDto<bool>> BulkDeleteAsync(TId[] objectsIds)
public virtual Task<OperationResultDto<bool>> BulkDeleteAsync(TId[] objectsIds)
{
throw new NotImplementedException();
}
Expand Down

0 comments on commit 511ea8b

Please sign in to comment.