using System; using System.Collections.Generic; using Repo.Models; namespace Repo.DAL { public interface IRepo { IEnumerable GetMovies(); } }