Basic Application Syncing

This commit is contained in:
Qstick
2020-10-22 14:00:04 -04:00
parent 47fbab02c5
commit feba96e8e0
16 changed files with 363 additions and 31 deletions
@@ -7,13 +7,13 @@ using NzbDrone.Core.ThingiProvider;
namespace NzbDrone.Core.Applications
{
public interface IApplicationsFactory : IProviderFactory<IApplications, ApplicationDefinition>
public interface IApplicationFactory : IProviderFactory<IApplication, ApplicationDefinition>
{
}
public class ApplicationFactory : ProviderFactory<IApplications, ApplicationDefinition>, IApplicationsFactory
public class ApplicationFactory : ProviderFactory<IApplication, ApplicationDefinition>, IApplicationFactory
{
public ApplicationFactory(IApplicationsRepository providerRepository, IEnumerable<IApplications> providers, IContainer container, IEventAggregator eventAggregator, Logger logger)
public ApplicationFactory(IApplicationsRepository providerRepository, IEnumerable<IApplication> providers, IContainer container, IEventAggregator eventAggregator, Logger logger)
: base(providerRepository, providers, container, eventAggregator, logger)
{
}