Integreat.Shared.Services.Loader.LanguagesLoader.LanguagesLoader C# (CSharp) Method

LanguagesLoader() public method

public LanguagesLoader ( Location location, PersistenceService persistenceService, INetworkService>.Func networkServiceFactory, Priority priority = Priority.Background ) : System
location Integreat.Shared.Models.Location
persistenceService Integreat.Shared.Services.Persistence.PersistenceService
networkServiceFactory INetworkService>.Func
priority Priority
return System
        public LanguagesLoader(Location location, PersistenceService persistenceService,
            Func<Priority, INetworkService> networkServiceFactory, Priority priority = Priority.Background)
        {
            _location = location;
            _persistenceService = persistenceService;
            _networkService = networkServiceFactory(priority);
        }