ddd

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// 实体基类
public abstract class Entity
{
    public Guid Id { get; protected set; }

    protected Entity()
    {
        Id = Guid.NewGuid();
    }
}

// 值对象基类
public abstract class ValueObject<T> where T : ValueObject<T>
{
    public override bool Equals(object obj)
    {
        var other = obj as T;
        if (other == null)
        {
            return false;
        }
        return EqualsCore(other);
    }

    protected abstract bool EqualsCore(T other);

    public override int GetHashCode()
    {
        return GetHashCodeCore();
    }

    protected abstract int GetHashCodeCore();
}

// 聚合根基类
public abstract class AggregateRoot : Entity
{
    private List<DomainEvent> _events = new List<DomainEvent>();

    protected void AddEvent(DomainEvent @event)
    {
        _events.Add(@event);
    }

    public IReadOnlyList<DomainEvent> GetEvents()
    {
        return _events.AsReadOnly();
    }

    public void ClearEvents()
    {
        _events.Clear();
    }
}

// 领域事件基类
public abstract class DomainEvent
{
}

// 仓储接口
public interface IRepository<T> where T : AggregateRoot
{
    void Add(T entity);
    void Remove(T entity);
    T GetById(Guid id);
}

// 仓储基类
public abstract class Repository<T> : IRepository<T> where T : AggregateRoot
{
    protected readonly List<T> _entities = new List<T>();

    public void Add(T entity)
    {
        _entities.Add(entity);
    }

    public void Remove(T entity)
    {
        _entities.Remove(entity);
    }

    public T GetById(Guid id)
    {
        return _entities.FirstOrDefault(e => e.Id == id);
    }
}