AuditLog: 繼承自Entity<long>的實體類。封裝AuditLog的信息。
AuditingStore: 實現了IAuditingStore接口,實現了將AuditLog的信息保存到數據庫的功能。其通過IRepository<AuditLog, long>實例完成對數據庫的操作。
BackgroundJobStore : 實現了IBackgroundJobStore接口,通過IRepository<BackgroundJobInfo, long>完成對BackgroundJobInfo在數據庫中的CRUD 操作。BackgroundJobInfo的實體類在ABP核心框架中已有定義。
Setting : 繼承自AuditedEntity<long>的實體類。封裝用戶的Setting信息。
SettingStore: 實現了ISettingStore接口,通過IRepository<Setting, long>完成對Setting在數據庫中的CRUD 操作。
AbpIdentityResult : 繼承自ASP.NET Identity 的IdentityResult類型。定義了一個靜態方法Failed,根據errors返回一個AbpIdentityResult 實例
NotificationStore:實現了INotificationStore接口。通過IRepository<NotificationInfo, Guid>,IRepository<UserNotificationInfo, Guid>和IRepository<NotificationSubscriptionInfo, Guid>倉儲實例完成Notification以及與Notification相關的關聯關系的CRUD操作。NotificationInfo的實體類在ABP核心框架中已有定義。