Ejemplo n.º 1
0
        public virtual LyricsForSong CreateLyrics(ContentLanguageSelection language, string val, string source)
        {
            ParamIs.NotNullOrEmpty(() => val);
            ParamIs.NotNull(() => source);

            var entry = new LyricsForSong(this, language, val, source);

            Lyrics.Add(entry);

            return(entry);
        }
Ejemplo n.º 2
0
        public virtual LyricsForSong CreateLyrics(string val, string source, string url, TranslationType translationType, string cultureCode)
        {
            ParamIs.NotNullOrEmpty(() => val);
            ParamIs.NotNull(() => source);
            ParamIs.NotNull(() => url);

            var entry = new LyricsForSong(this, val, source, url, translationType, cultureCode);

            Lyrics.Add(entry);

            return(entry);
        }