public static DBSourceMusicVideoInfo GetOrCreate(DBTrackInfo mv, DBSourceInfo source)
        {
            DBSourceMusicVideoInfo rtn = Get(mv, source);

            if (rtn != null)
            {
                return(rtn);
            }

            rtn            = new DBSourceMusicVideoInfo();
            rtn.musicvideo = mv;
            rtn.Source     = source;

            // if this is the IMDb data source, populate the id with the imdb_id field
//            if (rtn.ScriptID == 874902 && mv.ImdbID.Trim().Length == 9)
//                rtn.Identifier = mv.ImdbID;

            mv.SourceMusicVideoInfo.Add(rtn);
            return(rtn);
        }
        public static DBSourceMusicVideoInfo GetOrCreate(DBTrackInfo mv, DBSourceInfo source)
        {
            DBSourceMusicVideoInfo rtn = Get(mv, source);
            if (rtn != null)
                return rtn;

            rtn = new DBSourceMusicVideoInfo();
            rtn.musicvideo = mv;
            rtn.Source = source;

            // if this is the IMDb data source, populate the id with the imdb_id field
            //            if (rtn.ScriptID == 874902 && mv.ImdbID.Trim().Length == 9)
            //                rtn.Identifier = mv.ImdbID;

            mv.SourceMusicVideoInfo.Add(rtn);
            return rtn;
        }
Esempio n. 3
0
 public DBSourceMusicVideoInfo GetSourceMusicVideoInfo(DBSourceInfo source)
 {
     return(DBSourceMusicVideoInfo.GetOrCreate(this, source));
 }
Esempio n. 4
0
 public DBSourceMusicVideoInfo GetSourceMusicVideoInfo(int scriptID)
 {
     return(DBSourceMusicVideoInfo.GetOrCreate(this, scriptID));
 }