From 4271ec5865b0c49425f0aab0dbd49879b56d6412 Mon Sep 17 00:00:00 2001 From: Ali Ahmed <36087995+aligredo@users.noreply.github.com> Date: Wed, 27 Sep 2023 15:06:51 +0300 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cd9bd5a..e09ab3a 100644 --- a/README.md +++ b/README.md @@ -710,9 +710,9 @@ So we will follow the following naming convention in our service layer here at S - Class-based service should be named in this pattern `ObjectService`, if this object has a few domains that requires services, it should be named in this pattern instead `ObjectDomainService`. - The actual function services inside the class should be named in this pattern `action`. -If you tak a look on the example above you will get a better grasp. In the example we have `FileDirectUploadService` service class and inside it the `start` and `finish` function services. +If you take a look at the example above you will get a better grasp. In the example we have the `FileDirectUploadService` service class and inside it the `start` and `finish` function services. -This is what we prefer in Shahry's projects asit has a nice feature: +This is what we prefer in Shahry's projects as it has a nice feature: - **Namespacing.** It's easy to spot all services inside the `UserService` class and it's a good idea to put them in a `users.py` module if the `UserSerivce` class gets big enough.