From d334b26dc191666858783d1a232d56feedf11cae Mon Sep 17 00:00:00 2001 From: Mark Davis <311063+markdav-is@users.noreply.github.com> Date: Thu, 4 Sep 2025 16:07:33 -0700 Subject: [PATCH] Update instructions/oqtane.instructions.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- instructions/oqtane.instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instructions/oqtane.instructions.md b/instructions/oqtane.instructions.md index 95300d6..ae81c3e 100644 --- a/instructions/oqtane.instructions.md +++ b/instructions/oqtane.instructions.md @@ -32,7 +32,7 @@ applyTo: '**/*.razor, **/*.razor.cs, **/*.razor.css' - Follow client server patterns for module development. - The Client project has various modules in the modules folder. - Each action in the client module is a seperate razor file that inherits from ModuleBase with index.razor being the default action. -- For complex client rocessing like getting data, create a service class that inherits from ServiceBase and lives in the services folder. One service class for each module. +- For complex client processing like getting data, create a service class that inherits from ServiceBase and lives in the services folder. One service class for each module. - Client service should call server endpoint using ServiceBase methods - Server project contains MVC Controllers, one for each module that match the client service calls. Each controller will call server-side services or repositories managed by DI - Servier projects use repository peterns for modules, one reposioty class per module to match the controllers.