From 2e25bbee5bdae957cc422ab4cf081e30684e8a7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Tue, 19 Jul 2016 12:07:28 +0300 Subject: [PATCH] Updated article. --- doc/article/article.html | 20 +- doc/article/create-template-2.png | Bin 0 -> 76922 bytes doc/article/create-template.png | Bin 38604 -> 0 bytes src/EventCloud.Web/Logs/Logs.txt | 6702 ----------------------------- 4 files changed, 13 insertions(+), 6709 deletions(-) create mode 100644 doc/article/create-template-2.png delete mode 100644 doc/article/create-template.png delete mode 100644 src/EventCloud.Web/Logs/Logs.txt diff --git a/doc/article/article.html b/doc/article/article.html index 4af11ec..6a41a98 100644 --- a/doc/article/article.html +++ b/doc/article/article.html @@ -66,8 +66,8 @@

Creating Application From Template

http://aspnetboilerplate.com/Templates:

-Creating the template

-

I selected "ABP + module zero" template (module zero adds +Create template

+

I selected template including "module zero" template (module zero adds user, role, tenant... management infrastructure to the framework). It creates a ready and working solution for us including a login page, navigation and a bootstrap based layout. After download and open the @@ -93,7 +93,7 @@

Creating Application From Template

Initial Login PAge

After login, we see the basic bootstrap based layout consists of two pages: -Home and About:

+Home and About:

Initial layout

This is a localized UI with a dynamic menu. Angular layout, routing and basic @@ -252,8 +252,8 @@

Entities

per tenant. This is needed for multi-tenancy. Thus, different tenants will have different events and can not see each other's events. ABP automatically filters entities of current tenant.

-

Event inherits from FullAuditedEntity which contains creation, modification -and deletion audit columns. FullAuditedEntity also implements ISoftDelete, so +

Event class inherits from FullAuditedEntity which contains creation, modification +and deletion audit columns. FullAuditedEntity also implements ISoftDelete, so events can not be deleted from database. They are marked as deleted when you delete it. ABP automatically filters (hides) deleted entities when you query database.

@@ -539,8 +539,8 @@

Domain Events

Application Services

Application services use domain layer to implement use cases of the application (generally used by presentation -layer). We have a single application service in this application; -EventAppService:

+layer). +EventAppService performs application logic for events.

[AbpAuthorize]
 public class EventAppService : EventCloudAppServiceBase, IEventAppService
 {
@@ -974,6 +974,12 @@ 

Summary

Article History