Ejemplo n.º 1
0
 public AccountController(IAccountControllerService accountControllerService)
 {
     if (accountControllerService == null)
     {
         throw new ArgumentNullException(nameof(accountControllerService));
     }
     _accountControllerService = accountControllerService;
 }
Ejemplo n.º 2
0
 public AccountController(IAccountControllerService accountControllerService)
 {
     if (accountControllerService == null) throw new ArgumentNullException(nameof(accountControllerService));
     _accountControllerService = accountControllerService;
 }