Browse Source

Added todo

pull/194/head
Halil İbrahim Kalkan 8 years ago
parent
commit
2bd084a7f8
  1. 1
      src/Volo.Abp.Ddd/Volo/Abp/Application/Services/CrudAppServiceBase.cs
  2. 2
      src/Volo.Abp.Ddd/Volo/Abp/Domain/Entities/IEntity.cs

1
src/Volo.Abp.Ddd/Volo/Abp/Application/Services/CrudAppServiceBase.cs

@ -4,6 +4,7 @@ using System.Linq.Dynamic.Core;
using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Dtos;
using Volo.Abp.Domain.Entities; using Volo.Abp.Domain.Entities;
using Volo.Abp.Domain.Repositories; using Volo.Abp.Domain.Repositories;
using Volo.Abp.ObjectMapping;
namespace Volo.Abp.Application.Services namespace Volo.Abp.Application.Services
{ {

2
src/Volo.Abp.Ddd/Volo/Abp/Domain/Entities/IEntity.cs

@ -18,6 +18,6 @@
/// <summary> /// <summary>
/// Unique identifier for this entity. /// Unique identifier for this entity.
/// </summary> /// </summary>
TKey Id { get; set; } TKey Id { get; set; } //TODO: Consider to remove setter and make it protected in Entity class
} }
} }

Loading…
Cancel
Save