Example #1
0
 public MisService(IMisService misService, Interfaces.IRedisCacheService redisCacheService)
 {
     _misService        = misService ?? throw new ArgumentNullException(nameof(misService));
     _redisCacheService = redisCacheService ?? throw new ArgumentNullException(nameof(redisCacheService));
 }
Example #2
0
 public SsoService(ISsoService ssoService, Interfaces.IRedisCacheService redisCacheService)
 {
     _ssoService        = ssoService ?? throw new ArgumentNullException(nameof(ssoService));
     _redisCacheService = redisCacheService ?? throw new ArgumentNullException(nameof(redisCacheService));
 }