用例:假設(shè)公司發(fā)布了一個公告 需要通過短信 和 郵件分別2種方式 通知員工
1:首先我們建立領(lǐng)域模型
/// <summary> /// 領(lǐng)域核心基類 /// </summary> public abstract class Core { public string Id { set; get; } = Guid.NewGuid().ToString(); } public interface ICore { }
2:消息模型
用例:假設(shè)公司發(fā)布了一個公告 需要通過短信 和 郵件分別2種方式 通知員工
1:首先我們建立領(lǐng)域模型
/// <summary> /// 領(lǐng)域核心基類 /// </summary> public abstract class Core { public string Id { set; get; } = Guid.NewGuid().ToString(); } public interface ICore { }
2:消息模型