Exemple #1
0
 public MylistGroupInfo GetMylistGroup(string groupId)
 {
     return(UserMylists.SingleOrDefault(x => x.GroupId == groupId));
 }
Exemple #2
0
 public bool CheckIsRegistratedAnyMylist(string videoId)
 {
     return(UserMylists.Any(x => x.CheckRegistratedVideoId(videoId)));
 }
Exemple #3
0
 public bool HasMylistGroup(string groupId)
 {
     return(UserMylists.Any(x => x.GroupId == groupId));
 }