Beispiel #1
0
 public USER_PLAYLIST(USER user, PLAYLIST playlist)
 {
     USER_ID      = user.ID;
     PLAYLIST_ID  = playlist.ID;
     DATE_CREATED = DateTime.Now;
 }
Beispiel #2
0
 public SONG_PLAY(SONG song, USER user)
 {
     SONG_ID     = song.ID;
     USER_ID     = user.ID;
     DATE_PLAYED = DateTime.Now;
 }