Browse Source

Revise solution template docs

pull/21781/head
Engincan VESKE 1 year ago
committed by GitHub
parent
commit
18a5ca31bf
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      docs/en/solution-templates/layered-web-application/background-workers.md
  2. 2
      docs/en/solution-templates/layered-web-application/index.md
  3. 2
      docs/en/solution-templates/single-layer-web-application/background-workers.md
  4. 2
      docs/en/solution-templates/single-layer-web-application/index.md

2
docs/en/solution-templates/layered-web-application/background-workers.md

@ -48,7 +48,7 @@ public class PassiveUserCheckerWorker : AsyncPeriodicBackgroundWorkerBase
} }
``` ```
After creating a worker, we should also register it in the application. We might add it in the *Domain* or *Application* layer. You can register your worker in the `OnApplicationInitializationAsync` method of your module class. After creating a worker, you should also register it in the application. You might add it in the *Domain* or *Application* layer. You can register your worker in the `OnApplicationInitializationAsync` method of your module class:
```csharp ```csharp
public class BookstoreApplicationModule : AbpModule public class BookstoreApplicationModule : AbpModule

2
docs/en/solution-templates/layered-web-application/index.md

@ -29,7 +29,7 @@ ABP Studio provides pre-architected, production-ready templates to jump-start a
* [Database configurations](database-configurations.md) * [Database configurations](database-configurations.md)
* [Logging (with Serilog)](logging.md) * [Logging (with Serilog)](logging.md)
* [Swagger integration](swagger-integration.md) * [Swagger integration](swagger-integration.md)
* [Bacground Jobs](background-jobs.md) * [Background Jobs](background-jobs.md)
* [Background Workers](background-workers.md) * [Background Workers](background-workers.md)
* [Distributed Locking](distributed-locking.md) * [Distributed Locking](distributed-locking.md)
* [Multi-Tenancy](multi-tenancy.md) * [Multi-Tenancy](multi-tenancy.md)

2
docs/en/solution-templates/single-layer-web-application/background-workers.md

@ -48,7 +48,7 @@ public class PassiveUserCheckerWorker : AsyncPeriodicBackgroundWorkerBase
} }
``` ```
After creating a worker, we should also register it in the application. You can register your worker in the `OnApplicationInitializationAsync` method of your module class. After creating a worker, you should also register it in the application. You can register your worker in the `OnApplicationInitializationAsync` method of your module class:
```csharp ```csharp
public class BookstoreModule : AbpModule public class BookstoreModule : AbpModule

2
docs/en/solution-templates/single-layer-web-application/index.md

@ -28,7 +28,7 @@ ABP Studio offers pre-architected, production-ready templates to quickly start a
* [Database configurations](database-configurations.md) * [Database configurations](database-configurations.md)
* [Logging (with Serilog)](logging.md) * [Logging (with Serilog)](logging.md)
* [Swagger integration](swagger-integration.md) * [Swagger integration](swagger-integration.md)
* [Bacground Jobs](background-jobs.md) * [Background Jobs](background-jobs.md)
* [Background Workers](background-workers.md) * [Background Workers](background-workers.md)
* [Distributed Locking](distributed-locking.md) * [Distributed Locking](distributed-locking.md)
* [Multi-Tenancy](multi-tenancy.md) * [Multi-Tenancy](multi-tenancy.md)

Loading…
Cancel
Save