Browse Source

Fix typeparamref.

pull/6809/head
Halil İbrahim Kalkan 6 years ago
parent
commit
b285537061
  1. 10
      framework/src/Volo.Abp.Ddd.Application/Volo/Abp/Application/Services/AbstractKeyCrudAppService.cs
  2. 10
      framework/src/Volo.Abp.Ddd.Application/Volo/Abp/Application/Services/AbstractKeyReadOnlyAppService.cs

10
framework/src/Volo.Abp.Ddd.Application/Volo/Abp/Application/Services/AbstractKeyCrudAppService.cs

@ -132,7 +132,7 @@ namespace Volo.Abp.Application.Services
}
/// <summary>
/// Maps <typeparam name="TCreateInput"/> to <typeparam name="TEntity"/> to create a new entity.
/// Maps <typeparamref name="TCreateInput"/> to <typeparamref name="TEntity"/> to create a new entity.
/// It uses <see cref="MapToEntity(TCreateInput)"/> by default.
/// It can be overriden for custom mapping.
/// Overriding this has higher priority than overriding the <see cref="MapToEntity(TCreateInput)"/>
@ -143,7 +143,7 @@ namespace Volo.Abp.Application.Services
}
/// <summary>
/// Maps <typeparam name="TCreateInput"/> to <typeparam name="TEntity"/> to create a new entity.
/// Maps <typeparamref name="TCreateInput"/> to <typeparamref name="TEntity"/> to create a new entity.
/// It uses <see cref="IObjectMapper"/> by default.
/// It can be overriden for custom mapping.
/// </summary>
@ -155,7 +155,7 @@ namespace Volo.Abp.Application.Services
}
/// <summary>
/// Sets Id value for the entity if <typeparam name="TKey"/> is <see cref="Guid"/>.
/// Sets Id value for the entity if <typeparamref name="TKey"/> is <see cref="Guid"/>.
/// It's used while creating a new entity.
/// </summary>
protected virtual void SetIdForGuids(TEntity entity)
@ -171,7 +171,7 @@ namespace Volo.Abp.Application.Services
}
/// <summary>
/// Maps <typeparam name="TUpdateInput"/> to <typeparam name="TEntity"/> to update the entity.
/// Maps <typeparamref name="TUpdateInput"/> to <typeparamref name="TEntity"/> to update the entity.
/// It uses <see cref="MapToEntity(TUpdateInput, TEntity)"/> by default.
/// It can be overriden for custom mapping.
/// Overriding this has higher priority than overriding the <see cref="MapToEntity(TUpdateInput, TEntity)"/>
@ -183,7 +183,7 @@ namespace Volo.Abp.Application.Services
}
/// <summary>
/// Maps <typeparam name="TUpdateInput"/> to <typeparam name="TEntity"/> to update the entity.
/// Maps <typeparamref name="TUpdateInput"/> to <typeparamref name="TEntity"/> to update the entity.
/// It uses <see cref="IObjectMapper"/> by default.
/// It can be overriden for custom mapping.
/// </summary>

10
framework/src/Volo.Abp.Ddd.Application/Volo/Abp/Application/Services/AbstractKeyReadOnlyAppService.cs

@ -166,7 +166,7 @@ namespace Volo.Abp.Application.Services
}
/// <summary>
/// Maps <typeparam name="TEntity"/> to <typeparam name="TGetOutputDto"/>.
/// Maps <typeparamref name="TEntity"/> to <typeparamref name="TGetOutputDto"/>.
/// It internally calls the <see cref="MapToGetOutputDto"/> by default.
/// It can be overriden for custom mapping.
/// Overriding this has higher priority than overriding the <see cref="MapToGetOutputDto"/>
@ -177,7 +177,7 @@ namespace Volo.Abp.Application.Services
}
/// <summary>
/// Maps <typeparam name="TEntity"/> to <typeparam name="TGetOutputDto"/>.
/// Maps <typeparamref name="TEntity"/> to <typeparamref name="TGetOutputDto"/>.
/// It uses <see cref="IObjectMapper"/> by default.
/// It can be overriden for custom mapping.
/// </summary>
@ -187,7 +187,7 @@ namespace Volo.Abp.Application.Services
}
/// <summary>
/// Maps a list of <typeparam name="TEntity"/> to <typeparam name="TGetListOutputDto"/> objects.
/// Maps a list of <typeparamref name="TEntity"/> to <typeparamref name="TGetListOutputDto"/> objects.
/// It uses <see cref="MapToGetListOutputDtoAsync"/> method for each item in the list.
/// </summary>
protected virtual async Task<List<TGetListOutputDto>> MapToGetListOutputDtosAsync(List<TEntity> entities)
@ -203,7 +203,7 @@ namespace Volo.Abp.Application.Services
}
/// <summary>
/// Maps <typeparam name="TEntity"/> to <typeparam name="TGetListOutputDto"/>.
/// Maps <typeparamref name="TEntity"/> to <typeparamref name="TGetListOutputDto"/>.
/// It internally calls the <see cref="MapToGetListOutputDto"/> by default.
/// It can be overriden for custom mapping.
/// Overriding this has higher priority than overriding the <see cref="MapToGetListOutputDto"/>
@ -214,7 +214,7 @@ namespace Volo.Abp.Application.Services
}
/// <summary>
/// Maps <typeparam name="TEntity"/> to <typeparam name="TGetListOutputDto"/>.
/// Maps <typeparamref name="TEntity"/> to <typeparamref name="TGetListOutputDto"/>.
/// It uses <see cref="IObjectMapper"/> by default.
/// It can be overriden for custom mapping.
/// </summary>

Loading…
Cancel
Save