Exemplo n.º 1
0
 public ArtistPicture(Artist artist, Image picture, string description)
     : this(artist, picture)
 {
     Description = description;
 }
Exemplo n.º 2
0
 public ArtistPicture(Artist artist, Image picture)
     : this(artist.Session)
 {
     Artist = artist;
     Image  = picture;
 }
Exemplo n.º 3
0
 public void AddArtist(Artist artist, MovieArtistLine line, string description)
 {
     new MovieArtist(this, artist, line, description);
 }
Exemplo n.º 4
0
 public MovieArtist(Artist artist)
     : this(artist.Session)
 {
     Artist = artist;
 }
Exemplo n.º 5
0
 public void AddArtist(Artist artist, MovieArtistLine line)
 {
     AddArtist(artist, line, string.Empty);
 }