Skip to content

Instantly share code, notes, and snippets.

@galli-leo
Created January 22, 2017 22:16
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 galli-leo/7d6316a8c182ef4d7d3fe7e429d6e32b to your computer and use it in GitHub Desktop.
Save galli-leo/7d6316a8c182ef4d7d3fe7e429d6e32b to your computer and use it in GitHub Desktop.
IFetchNetImport
public interface IFetchNetImport
{
List<Movie> FetchAndFilter(int listId, bool onlyEnableAuto); //Returns movies from listId that have not been added yet.
List<Movie> Fetch(int listId, bool onlyEnableAuto); //Returns all movies from listId.
//If onlyEnableAuto is set to true, only lists with enableAuto will be queried.
//If listId = 0, query all lists available!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment