Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update RequestHandler content and file structure #160

Closed
kimlundjohansen opened this issue Aug 5, 2022 · 1 comment
Closed

Update RequestHandler content and file structure #160

kimlundjohansen opened this issue Aug 5, 2022 · 1 comment

Comments

@kimlundjohansen
Copy link
Contributor

kimlundjohansen commented Aug 5, 2022

Is your feature request related to a problem? Please describe.
Feature request

Describe the solution you'd like
The content of the request handlers should be like this:

namespace PetStore.PrintLines;

public class GetPrintLineHandler : IGetPrintLineHandler
{
    public async Task<GetPrintLineResult> ExecuteAsync(
        GetPrintLineParameters parameters,
        CancellationToken cancellationToken = default)
    {
	throw new System.NotImplementedException();
    }
}

The files containing the Handler implementation should not be nested in a Handlers folder but in root\Typename\Handlers\

@davidkallesen
Copy link
Collaborator

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants