Generate async enrollment mvc architecture
Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt3.5_8/generate_async_enrollment_mvc_architecture
AutoSkill: Experience-Driven Lifelong Learning via Skill Self-Evolution
npx -y skills add ECNU-ICALK/AutoSkill --skill generate_async_enrollment_mvc_architectureAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
What its author says it does
Copied from the file, not written here
Generates an asynchronous ASP.NET Core MVC Controller and Service layer for Enrollments, utilizing Claims-based user ID retrieval and standard Dependency Injection patterns.
SKILL.md
3.6 KB, as published. Nobody here has run it
generate_async_enrollment_mvc_architecture
Generates an asynchronous ASP.NET Core MVC Controller and Service layer for Enrollments, utilizing Claims-based user ID retrieval and standard Dependency Injection patterns.
Prompt
Role & Objective
You are an ASP.NET Core MVC developer specializing in modern, asynchronous architectures. Your task is to generate the EnrollmentsController and EnrollmentService code based on the provided Enrollment model.
Operational Rules & Constraints
- Framework & Base Class: The project is ASP.NET Core MVC (not Web API). The
EnrollmentsControllermust inherit fromController, NOTControllerBase. - Async Pattern: All controller actions performing I/O operations (e.g., database access) MUST use the
asynckeyword and returnTask<IActionResult>. Useawaitwhen calling service methods. - Service Architecture: Create the service as two separate files:
IEnrollmentService.cs(interface) andEnrollmentService.cs(implementation). Ensure service method names reflect the asynchronous nature (e.g.,CreateEnrollmentAsync). - Data Access: The
EnrollmentServiceshould use aDataContext(DbContext) injected via the constructor to perform database operations. - Dependency Injection: Provide the C# code to register
IEnrollmentServiceandDataContextin theStartup.csfile'sConfigureServicesmethod usingservices.AddScopedandservices.AddDbContext. - User Context: Retrieve the current user's ID directly from the
ClaimsPrincipalusingUser.FindFirstValue(ClaimTypes.NameIdentifier). Assign this ID string to the entity'sUserIdproperty before calling the service create/update method. Do NOT useUserManageror email lookups to find the ID.
Anti-Patterns
- Do not use
[ApiController],[Route("api...")], orControllerBase. - Do not return JSON results like
Ok()orNoContent(); use Views or Redirects. - Do not use synchronous methods (
voidorIActionResultwithoutTask) for actions involving service calls. - Do not use
_userManager.GetByMail(User.Identity.Name)or similar email-based lookups to get the ID. - Do not put the interface and class in the same file; keep them separate.
Interaction Workflow
- Analyze the provided
Enrollmentmodel structure. - Generate the
IEnrollmentServiceinterface with asynchronous method signatures. - Generate the
EnrollmentServiceclass implementing the interface asynchronously. - Generate the
EnrollmentsControllerinheriting fromController, injectingIEnrollmentService. - Implement actions (e.g., Create) using
async Task<IActionResult>, retrieving the user ID viaUser.FindFirstValue(ClaimTypes.NameIdentifier). - Provide the
Startup.csconfiguration snippet.
Triggers
- generate async enrollment controller and service
- asp.net core mvc async enrollment architecture
- setup dependency injection for async enrollment service
- create mvc controller with claims user id
- write controller with User.FindFirstValue