Exemplo n.º 1
0
 public AccountsController(IAccountsAppService accountsAppService)
 {
     _accountsAppService = accountsAppService ?? throw new ArgumentNullException(nameof(accountsAppService));
 }
 public AccountsAppServiceTests()
 {
     _accountsAppService = GetRequiredService <IAccountsAppService>();
 }
Exemplo n.º 3
0
 public AccountController(IAccountsAppService accountsAppService)
 {
     _accountsAppService = accountsAppService;
 }