We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Services shouldn't return HttpResponses
https://github.com/Jadhielv/KCTest/blob/4b2d6219d03bd910d430fe54cffe5524caa2784b/Backend/src/KCTest.Domain/Services/IPermissionService.cs#L9
HttpResponses should be handled in the controller.
The text was updated successfully, but these errors were encountered:
Should return a model like:
public class Response<T> { string Message { get; set; } public int StatusCode { get; set; } public T Data { get; set; } }
Sorry, something went wrong.
Morzkat
Successfully merging a pull request may close this issue.
Services shouldn't return HttpResponses
https://github.com/Jadhielv/KCTest/blob/4b2d6219d03bd910d430fe54cffe5524caa2784b/Backend/src/KCTest.Domain/Services/IPermissionService.cs#L9
HttpResponses should be handled in the controller.
The text was updated successfully, but these errors were encountered: