8 lines
144 B
C#
8 lines
144 B
C#
namespace Telebilbap_Epg.Services
|
|
{
|
|
public interface IMovieService
|
|
{
|
|
Task<Movie?> GetMovie(string title, int? year);
|
|
}
|
|
}
|