Rules changes and rework

This commit is contained in:
Jamie.Rees 2017-06-06 09:27:51 +01:00
commit 9f4a8902f9
32 changed files with 2804 additions and 35 deletions

View file

@ -12,14 +12,14 @@ namespace Ombi.Api.TheMovieDb
{
public TheMovieDbApi(IMapper mapper)
{
Api = new Ombi.Api.Api();
Api = new Api();
Mapper = mapper;
}
private IMapper Mapper { get; }
private readonly string ApiToken = "b8eabaf5608b88d0298aa189dd90bf00";
private static readonly string BaseUri ="http://api.themoviedb.org/3/";
private Ombi.Api.Api Api { get; }
private Api Api { get; }
public async Task<MovieResponseDto> GetMovieInformation(int movieId)
{