You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given that a valid interface and implementing class has been created there is no compile errors however when trying to retrieve the command from DI the program fails.
Take for instance
public interface IReadUserCommand : IAsyncAspCommand<int, User>
...
public class ReadUserCommand : AsyncAspCommand<int, User>, IReadUserCommand
Given that a valid interface and implementing class has been created there is no compile errors however when trying to retrieve the command from DI the program fails.
Take for instance
when ReadUserCommand is called, for instance
then the program fails to instantiate ReadUserCommand.
The text was updated successfully, but these errors were encountered: