Exemple #1
0
 public IList <BestMatch> BestMatch(string firstKeyword, string secondKeyword)
 {
     using var ctx = new MoviesContext();
     return(ctx.BestMatch(firstKeyword, secondKeyword));
 }