public AuthManager(IConnectivity connectivity,
                    IServiceMapper mapper,
                    IInternalAuthManager internalAuthManager,
                    IAuthWebService authWebService) : base(connectivity, mapper, internalAuthManager)
 {
     _internalAuthManager = internalAuthManager;
     _authWebService      = authWebService;
 }
 public AppUserManager(IConnectivity connectivity,
                       IServiceMapper mapper,
                       IInternalAuthManager authManager,
                       IAuthWebService authWebService,
                       IAppUserRepository appUserRepository) : base(connectivity, mapper, authManager)
 {
     _authWebService    = authWebService;
     _appUserRepository = appUserRepository;
 }