Initial Commit
This commit is contained in:
17
Services/Interface/IMovieService.cs
Normal file
17
Services/Interface/IMovieService.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using RadarrSharp.Models;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace RadarrSharp.Services.Interface
|
||||
{
|
||||
public interface IMovieService
|
||||
{
|
||||
Task<Movie> AddMovie(Movie movie);
|
||||
Task<bool> DeleteMovie(int id, bool addImportExclusion, bool deleteFiles);
|
||||
Task<IEnumerable<Movie>> GetMovie(int id);
|
||||
Task<IEnumerable<Movie>> GetMovies(string tmdbId = null);
|
||||
Task<IEnumerable<Movie>> MovieLookup(string searchTerm);
|
||||
Task<Movie> PutMovie(Movie movie, bool moveFiles);
|
||||
}
|
||||
}
|
||||
11
Services/Interface/IQualityService.cs
Normal file
11
Services/Interface/IQualityService.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using RadarrSharp.Models;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace RadarrSharp.Services.Implementation
|
||||
{
|
||||
public interface IQualityService
|
||||
{
|
||||
Task<IEnumerable<QualityProfile>> GetQualities();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user