IGetable.cs 273 B

1234567891011
  1. using System;
  2. namespace AVSORTER
  3. {
  4. public interface IGetable
  5. {
  6. bool IsInitCompleted { get; set; }
  7. bool GetCover(Movie mo);
  8. Movie GetMovie(MovieBasic basic);
  9. System.Collections.Generic.List<MovieBasic> Query(string fcode);
  10. }
  11. }