Ejemplo n.º 1
0
        public IList <UserTitleRate> GetUserTitleRate()
        {
            using var ctx = new Raw11Context(_connectionString);
            return(ctx.UserTitleRate

                   .ToList());
        }
Ejemplo n.º 2
0
 public IList <WordSearch> GetWordSearch()
 {
     using var ctx = new Raw11Context(_connectionString);
     return(ctx.WordSearch.ToList());
 }
Ejemplo n.º 3
0
 public IList <Users> GetUsers()
 {
     using var ctx = new Raw11Context(_connectionString);
     return(ctx.Users.ToList());
 }
Ejemplo n.º 4
0
 public IList <TitleBasics> GetTitleBasics()
 {
     using var ctx = new Raw11Context(_connectionString);
     return(ctx.TitleBasics.ToList());
 }
Ejemplo n.º 5
0
 public IList <TitleEpisode> TitleEpisode()
 {
     using var ctx = new Raw11Context(_connectionString);
     return(ctx.TitleEpisode.ToList());
 }
Ejemplo n.º 6
0
 public IList <Directors> GetDirectors()
 {
     using var ctx = new Raw11Context(_connectionString);
     return(ctx.Directors.ToList());
 }
Ejemplo n.º 7
0
 public IList <SearchHistory> GetSearchHistory()
 {
     using var ctx = new Raw11Context(_connectionString);
     return(ctx.SearchHistory.ToList());
 }
Ejemplo n.º 8
0
 public IList <Bookmarktitle> GetBookmarktitle()
 {
     using var ctx = new Raw11Context(_connectionString);
     return(ctx.Bookmarktitle.ToList());
 }
Ejemplo n.º 9
0
 public IList <BookmarkPerson> GetBookmarkPerson()
 {
     using var ctx = new Raw11Context(_connectionString);
     return(ctx.BookmarkPerson.ToList());
 }
Ejemplo n.º 10
0
 public IList <ActorsProfession> GetActorsProfession()
 {
     using var ctx = new Raw11Context(_connectionString);
     return(ctx.ActorsProfessions.ToList());
 }
Ejemplo n.º 11
0
 public IList <ActorsKnownForTitles> GetActorsKnownForTitles()
 {
     using var ctx = new Raw11Context(_connectionString);
     return(ctx.ActorsKnownForTitles.ToList());
 }
Ejemplo n.º 12
0
 public IList <Writer> GetWriter()
 {
     using var ctx = new Raw11Context(_connectionString);
     return(ctx.Writer.ToList());
 }