Removed some TODO notes.

pull/81/head
Halil İbrahim Kalkan 9 years ago
parent fca339d682
commit 13997583ce

@ -5,7 +5,6 @@ namespace Volo.Abp.Domain.Entities
/// <summary>
/// This exception is thrown if an entity excepted to be found but not found.
/// </summary>
//TODO: [Serializable]
public class EntityNotFoundException : AbpException
{
/// <summary>
@ -26,15 +25,6 @@ namespace Volo.Abp.Domain.Entities
}
///// <summary>
///// Creates a new <see cref="EntityNotFoundException"/> object.
///// </summary>
//public EntityNotFoundException(SerializationInfo serializationInfo, StreamingContext context)
// : base(serializationInfo, context)
//{
//}
/// <summary>
/// Creates a new <see cref="EntityNotFoundException"/> object.
/// </summary>

@ -1,7 +1,5 @@
namespace Volo.Abp.Domain.Entities
{
//TODO: Domain events
public interface IAggregateRoot : IAggregateRoot<string>, IEntity
{

@ -1,6 +1,5 @@
namespace Volo.Abp.Domain.Entities
{
//TODO: Think a better naming?
public interface IHasConcurrencyStamp
{
string ConcurrencyStamp { get; set; }

@ -17,8 +17,6 @@ namespace Volo.Abp.Domain.Repositories
public interface IQueryableRepository<TEntity, TPrimaryKey> : IRepository<TEntity, TPrimaryKey>, IQueryable<TEntity>
where TEntity : class, IEntity<TPrimaryKey>
{
//TODO: Is Delete needed?
/// <summary>
/// Deletes many entities by function.
/// Notice that: All entities fits to given predicate are retrieved and deleted.

Loading…
Cancel
Save