All Questions
4 questions
1
vote
2
answers
3k
views
One API or Two APIs one for internal use and the other for external use
I follow the Layered architecture Like this:
But with two differences:
I use Blazor Assembly for UI Layer.
I have API layer(REST) In between the presentation layer and the service layer.
My ...
0
votes
1
answer
583
views
Methods linking bad/good practices
I have multiple methods calling each other to simplify changing anything in the code and to avoid fixing errors and copy pasting.
It looks like this:
Is this a bad practice?
Does it cause too much ...
2
votes
1
answer
2k
views
Events in WCF Service Architecture (Server Side)
Problem:
Now, I have some events that will take place when the client submits a request to the server. These events will arise on the server and they will be subscribed by the services themselves (...
1
vote
3
answers
774
views
C# dynamics and Expando object [closed]
Under which application development scenarios C# dynamics and ExpandoObject can be used or when to consider using c# dynamics and ExpandoObject