Request information about movie from IMDB.
using System.Collections.Generic;
namespace MovieNavigator.Core.Services
{
public interface ISearchStatisticsService
{
IEnumerable<SearchMovieItem> GetRecentSearchList(int maxItems);
void CreateSearchStatistics(string movieTitle, int foundItems);
void UpdateSearchStatistics(string movieTitle, int foundItems);
bool IsSearchExists(string movieTitle);
}
}