Beispiel #1
0
        protected override ObjetoDominio HacerCarga(long id, SqlDataReader fila)
        {
            string  titulo    = Convert.ToString(fila["Titulo"]);
            long    artistaId = Convert.ToInt64(fila["ArtistaId"]);
            Artista artista   = MapperAbstracto.Artista().Buscar(artistaId);

            return(new Album(id, titulo, artista));
        }
Beispiel #2
0
        static void Main(string[] args)
        {
            AlbumMapper albumMapper = new AlbumMapper();
            Album       album       = albumMapper.Buscar(2);
            Artista     artista     = album.getArtista();

            Console.WriteLine(String.Format("El album '{0}' de {1}", album.getTitulo(), artista.getNombre()));

            Console.WriteLine("Pulse cualquier tecla para continuar...");
            Console.ReadKey();
        }
Beispiel #3
0
 public void setArtista(Artista artista)
 {
     this.artista = artista;
 }
Beispiel #4
0
 public Album(long id, string titulo, Artista artista)
 {
     this.id = id;
     this.titulo = titulo;
     this.artista = artista;
 }
Beispiel #5
0
 public void setArtista(Artista artista)
 {
     this.artista = artista;
 }
Beispiel #6
0
 public Album(long id, string titulo, Artista artista)
 {
     this.id      = id;
     this.titulo  = titulo;
     this.artista = artista;
 }