C# 클래스 DataStoreLib.Storage.TableManager

상속: IStore
파일 보기 프로젝트 열기: viren85/moviemirchi 1 사용 예제들

공개 메소드들

메소드 설명
DeleteNewsItemById ( List newsIds ) : bool
DeleteTwitterItemById ( List twitterIds ) : bool
GetAffilationsByid ( IEnumerable ids ) : AffilationEntity>.IDictionary

Return the affiliations by id

GetAllAffilation ( ) : AffilationEntity>.IDictionary

Return all affiliations

GetAllArtist ( string artistName ) : IEnumerable
GetAllMovies ( ) : MovieEntity>.IDictionary

Return the all Movies

GetAllReviewer ( ) : ReviewerEntity>.IDictionary

Return all reviewer

GetAllReviewer ( string reviewerName ) : IEnumerable
GetAllUser ( ) : UserEntity>.IDictionary

Return the all user

GetArtist ( string artistName ) : ArtistEntity
GetArtistMovies ( ) : MovieEntity>.IDictionary
GetGenrewiseMovies ( ) : MovieEntity>.IDictionary
GetMoviesById ( IEnumerable ids ) : MovieEntity>.IDictionary

Return the movies by its id

GetMoviesByUniqueName ( string name ) : MovieEntity>.IDictionary

Return the list of movies by uniqueName

GetNewsById ( IEnumerable ids ) : NewsEntity>.IDictionary
GetNewsItems ( ) : NewsEntity>.IDictionary
GetPopularOnMovieMirchisById ( IEnumerable ids ) : PopularOnMovieMirchiEntity>.IDictionary
GetRecentNews ( int startIndex, int pageSize = 20 ) : IEnumerable
GetRecentTweets ( int startIndex, int pageSize = 20 ) : IEnumerable
GetRecentTweets ( string tweetType, string name, int startIndex, int pageSize = 20 ) : IEnumerable
GetReviewerById ( IEnumerable reviewerIds ) : ReviewerEntity>.IDictionary

Return the reviewer by id

GetReviewersById ( IEnumerable ids ) : Models.ReviewerEntity>.IDictionary

Return the List of reviewers by its id

GetReviewsById ( IEnumerable ids ) : ReviewEntity>.IDictionary

return the reviews by review id

GetReviewsByMovieId ( string movieId ) : Models.ReviewEntity>.IDictionary

Return the reviews by movieid

GetReviewsByReviewer ( string reviewerName ) : ReviewEntity>.IDictionary

Return the reviews by the reviewerid

GetReviewsDetailById ( string reviewerId, string movieId ) : ReviewEntity>.IDictionary

Return the reviews detail on the basis of reviewerid and movieid

GetTweetById ( string id ) : TwitterEntity>.IDictionary
GetUserFavoritesById ( IEnumerable ids ) : UserFavoriteEntity>.IDictionary
GetUserFavoritesByUserId ( string userId ) : UserFavoriteEntity
GetUsersById ( IEnumerable userIds ) : UserEntity>.IDictionary

Return the users by its id

GetUsersByName ( string userName ) : UserEntity>.IDictionary

Return the List of all UserName

IsTweetExist ( IEnumerable ids ) : bool

TODO: Please add comments here

UpdateAffilationsById ( IEnumerable affilations ) : bool>.IDictionary

Update the affiliation by id

UpdateArtistItemById ( IEnumerable artist ) : bool>.IDictionary
UpdateMoviesById ( IEnumerable movies ) : bool>.IDictionary

Update the movies by id

UpdateNewsItemById ( IEnumerable news ) : bool>.IDictionary
UpdatePopularOnMovieMirchisById ( IEnumerable popularOnMovieMirchis ) : bool>.IDictionary
UpdateReviewRating ( string reviewId, string rating ) : bool

Update the review rating

UpdateReviewers ( IEnumerable reviewers ) : bool>.IDictionary

Return the list of reviewers to update

UpdateReviewesByReviewerId ( IEnumerable reviews ) : bool>.IDictionary

Return the list of reviewes bu reviewerId

UpdateReviewesByReviewerId ( IEnumerable ids ) : ReviewEntity>.IDictionary

Update Reviewes by reviewerId

UpdateReviewsById ( IEnumerable reviews ) : bool>.IDictionary

Update the reviews by id

UpdateTweetById ( IEnumerable tweets ) : bool>.IDictionary
UpdateUserFavoritesById ( IEnumerable userFavorites ) : bool>.IDictionary
UpdateUsersById ( IEnumerable users ) : bool>.IDictionary

Update the user by its Id

메소드 상세

DeleteNewsItemById() 공개 메소드

public DeleteNewsItemById ( List newsIds ) : bool
newsIds List
리턴 bool

DeleteTwitterItemById() 공개 메소드

public DeleteTwitterItemById ( List twitterIds ) : bool
twitterIds List
리턴 bool

GetAffilationsByid() 공개 메소드

Return the affiliations by id
public GetAffilationsByid ( IEnumerable ids ) : AffilationEntity>.IDictionary
ids IEnumerable
리턴 AffilationEntity>.IDictionary

GetAllAffilation() 공개 메소드

Return all affiliations
public GetAllAffilation ( ) : AffilationEntity>.IDictionary
리턴 AffilationEntity>.IDictionary

GetAllArtist() 공개 메소드

public GetAllArtist ( string artistName ) : IEnumerable
artistName string
리턴 IEnumerable

GetAllMovies() 공개 메소드

Return the all Movies
public GetAllMovies ( ) : MovieEntity>.IDictionary
리턴 MovieEntity>.IDictionary

GetAllReviewer() 공개 메소드

Return all reviewer
public GetAllReviewer ( ) : ReviewerEntity>.IDictionary
리턴 ReviewerEntity>.IDictionary

GetAllReviewer() 공개 메소드

public GetAllReviewer ( string reviewerName ) : IEnumerable
reviewerName string
리턴 IEnumerable

GetAllUser() 공개 메소드

Return the all user
public GetAllUser ( ) : UserEntity>.IDictionary
리턴 UserEntity>.IDictionary

GetArtist() 공개 메소드

public GetArtist ( string artistName ) : ArtistEntity
artistName string
리턴 DataStoreLib.Models.ArtistEntity

GetArtistMovies() 공개 메소드

public GetArtistMovies ( ) : MovieEntity>.IDictionary
리턴 MovieEntity>.IDictionary

GetGenrewiseMovies() 공개 메소드

public GetGenrewiseMovies ( ) : MovieEntity>.IDictionary
리턴 MovieEntity>.IDictionary

GetMoviesById() 공개 메소드

Return the movies by its id
public GetMoviesById ( IEnumerable ids ) : MovieEntity>.IDictionary
ids IEnumerable
리턴 MovieEntity>.IDictionary

GetMoviesByUniqueName() 공개 메소드

Return the list of movies by uniqueName
public GetMoviesByUniqueName ( string name ) : MovieEntity>.IDictionary
name string
리턴 MovieEntity>.IDictionary

GetNewsById() 공개 메소드

public GetNewsById ( IEnumerable ids ) : NewsEntity>.IDictionary
ids IEnumerable
리턴 NewsEntity>.IDictionary

GetNewsItems() 공개 메소드

public GetNewsItems ( ) : NewsEntity>.IDictionary
리턴 NewsEntity>.IDictionary

GetPopularOnMovieMirchisById() 공개 메소드

public GetPopularOnMovieMirchisById ( IEnumerable ids ) : PopularOnMovieMirchiEntity>.IDictionary
ids IEnumerable
리턴 PopularOnMovieMirchiEntity>.IDictionary

GetRecentNews() 공개 메소드

public GetRecentNews ( int startIndex, int pageSize = 20 ) : IEnumerable
startIndex int
pageSize int
리턴 IEnumerable

GetRecentTweets() 공개 메소드

public GetRecentTweets ( int startIndex, int pageSize = 20 ) : IEnumerable
startIndex int
pageSize int
리턴 IEnumerable

GetRecentTweets() 공개 메소드

public GetRecentTweets ( string tweetType, string name, int startIndex, int pageSize = 20 ) : IEnumerable
tweetType string
name string
startIndex int
pageSize int
리턴 IEnumerable

GetReviewerById() 공개 메소드

Return the reviewer by id
public GetReviewerById ( IEnumerable reviewerIds ) : ReviewerEntity>.IDictionary
reviewerIds IEnumerable
리턴 ReviewerEntity>.IDictionary

GetReviewersById() 공개 메소드

Return the List of reviewers by its id
public GetReviewersById ( IEnumerable ids ) : Models.ReviewerEntity>.IDictionary
ids IEnumerable
리턴 Models.ReviewerEntity>.IDictionary

GetReviewsById() 공개 메소드

return the reviews by review id
public GetReviewsById ( IEnumerable ids ) : ReviewEntity>.IDictionary
ids IEnumerable
리턴 ReviewEntity>.IDictionary

GetReviewsByMovieId() 공개 메소드

Return the reviews by movieid
public GetReviewsByMovieId ( string movieId ) : Models.ReviewEntity>.IDictionary
movieId string
리턴 Models.ReviewEntity>.IDictionary

GetReviewsByReviewer() 공개 메소드

Return the reviews by the reviewerid
public GetReviewsByReviewer ( string reviewerName ) : ReviewEntity>.IDictionary
reviewerName string
리턴 ReviewEntity>.IDictionary

GetReviewsDetailById() 공개 메소드

Return the reviews detail on the basis of reviewerid and movieid
public GetReviewsDetailById ( string reviewerId, string movieId ) : ReviewEntity>.IDictionary
reviewerId string
movieId string
리턴 ReviewEntity>.IDictionary

GetTweetById() 공개 메소드

public GetTweetById ( string id ) : TwitterEntity>.IDictionary
id string
리턴 TwitterEntity>.IDictionary

GetUserFavoritesById() 공개 메소드

public GetUserFavoritesById ( IEnumerable ids ) : UserFavoriteEntity>.IDictionary
ids IEnumerable
리턴 UserFavoriteEntity>.IDictionary

GetUserFavoritesByUserId() 공개 메소드

public GetUserFavoritesByUserId ( string userId ) : UserFavoriteEntity
userId string
리턴 DataStoreLib.Models.UserFavoriteEntity

GetUsersById() 공개 메소드

Return the users by its id
public GetUsersById ( IEnumerable userIds ) : UserEntity>.IDictionary
userIds IEnumerable
리턴 UserEntity>.IDictionary

GetUsersByName() 공개 메소드

Return the List of all UserName
public GetUsersByName ( string userName ) : UserEntity>.IDictionary
userName string
리턴 UserEntity>.IDictionary

IsTweetExist() 공개 메소드

TODO: Please add comments here
public IsTweetExist ( IEnumerable ids ) : bool
ids IEnumerable
리턴 bool

UpdateAffilationsById() 공개 메소드

Update the affiliation by id
public UpdateAffilationsById ( IEnumerable affilations ) : bool>.IDictionary
affilations IEnumerable
리턴 bool>.IDictionary

UpdateArtistItemById() 공개 메소드

public UpdateArtistItemById ( IEnumerable artist ) : bool>.IDictionary
artist IEnumerable
리턴 bool>.IDictionary

UpdateMoviesById() 공개 메소드

Update the movies by id
public UpdateMoviesById ( IEnumerable movies ) : bool>.IDictionary
movies IEnumerable
리턴 bool>.IDictionary

UpdateNewsItemById() 공개 메소드

public UpdateNewsItemById ( IEnumerable news ) : bool>.IDictionary
news IEnumerable
리턴 bool>.IDictionary

UpdatePopularOnMovieMirchisById() 공개 메소드

public UpdatePopularOnMovieMirchisById ( IEnumerable popularOnMovieMirchis ) : bool>.IDictionary
popularOnMovieMirchis IEnumerable
리턴 bool>.IDictionary

UpdateReviewRating() 공개 메소드

Update the review rating
public UpdateReviewRating ( string reviewId, string rating ) : bool
reviewId string
rating string
리턴 bool

UpdateReviewers() 공개 메소드

Return the list of reviewers to update
public UpdateReviewers ( IEnumerable reviewers ) : bool>.IDictionary
reviewers IEnumerable
리턴 bool>.IDictionary

UpdateReviewesByReviewerId() 공개 메소드

Return the list of reviewes bu reviewerId
public UpdateReviewesByReviewerId ( IEnumerable reviews ) : bool>.IDictionary
reviews IEnumerable
리턴 bool>.IDictionary

UpdateReviewesByReviewerId() 공개 메소드

Update Reviewes by reviewerId
public UpdateReviewesByReviewerId ( IEnumerable ids ) : ReviewEntity>.IDictionary
ids IEnumerable
리턴 ReviewEntity>.IDictionary

UpdateReviewsById() 공개 메소드

Update the reviews by id
public UpdateReviewsById ( IEnumerable reviews ) : bool>.IDictionary
reviews IEnumerable
리턴 bool>.IDictionary

UpdateTweetById() 공개 메소드

public UpdateTweetById ( IEnumerable tweets ) : bool>.IDictionary
tweets IEnumerable
리턴 bool>.IDictionary

UpdateUserFavoritesById() 공개 메소드

public UpdateUserFavoritesById ( IEnumerable userFavorites ) : bool>.IDictionary
userFavorites IEnumerable
리턴 bool>.IDictionary

UpdateUsersById() 공개 메소드

Update the user by its Id
public UpdateUsersById ( IEnumerable users ) : bool>.IDictionary
users IEnumerable
리턴 bool>.IDictionary