Skip to content

Instantly share code, notes, and snippets.

@BryanOroxon
Created December 30, 2019 16:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BryanOroxon/dcc4f756223699a7557e1a8b69dc6abc to your computer and use it in GitHub Desktop.
Save BryanOroxon/dcc4f756223699a7557e1a8b69dc6abc to your computer and use it in GitHub Desktop.
IDataService.cs
using System.Collections.Generic;
using System.Threading.Tasks;
using GifInMotion.Models;
namespace GifInMotion.Services
{
public interface IDataService
{
Task<IEnumerable<Movies>> GetMoviesAsync();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment