public AuthController(IAuthService authService, IEncryptionUtil encryptionUtil)
 {
     _authService    = authService;
     _encryptionUtil = encryptionUtil;
 }
Exemplo n.º 2
0
 public MyGiftCardController(IEncryptionUtil encryptionUtil, IGiftCardDAO dao)
 {
     this.encryptionUtil = encryptionUtil;
     this.dao            = dao;
 }