public ProfileAppService( GoogleTwoFactorAuthenticateService googleTwoFactorAuthenticateService, ICacheManager cacheManager) { _googleTwoFactorAuthenticateService = googleTwoFactorAuthenticateService; _cacheManager = cacheManager; }
public ProfileAppService( IAppFolders appFolders, IBinaryObjectManager binaryObjectManager, ITimeZoneService timezoneService, IFriendshipManager friendshipManager, GoogleTwoFactorAuthenticateService googleTwoFactorAuthenticateService, ISmsSender smsSender, ICacheManager cacheManager) { _appFolders = appFolders; _binaryObjectManager = binaryObjectManager; _timeZoneService = timezoneService; _friendshipManager = friendshipManager; _googleTwoFactorAuthenticateService = googleTwoFactorAuthenticateService; _smsSender = smsSender; _cacheManager = cacheManager; }
public ProfileAppService( IAppFolders appFolders, IBinaryObjectManager binaryObjectManager, ITimeZoneService timezoneService, IFriendshipManager friendshipManager, GoogleTwoFactorAuthenticateService googleTwoFactorAuthenticateService, ISmsSender smsSender, ICacheManager cacheManager, ITempFileCacheManager tempFileCacheManager, IBackgroundJobManager backgroundJobManager, ProfileImageServiceFactory profileImageServiceFactory) { _binaryObjectManager = binaryObjectManager; _timeZoneService = timezoneService; _friendshipManager = friendshipManager; _googleTwoFactorAuthenticateService = googleTwoFactorAuthenticateService; _smsSender = smsSender; _cacheManager = cacheManager; _tempFileCacheManager = tempFileCacheManager; _backgroundJobManager = backgroundJobManager; _profileImageServiceFactory = profileImageServiceFactory; }