Exemplo n.º 1
0
 public Prestamo ToEntity() =>
 new Prestamo(
     id: Id,
     numero: NroPrestamo.Of(Numero),
     socio: Socio.ToEntity(),
     libro: Libro.ToEntity(),
     fechaPrestamo: Fecha.Of(FechaPrestamo),
     fechaDevolucion: Fecha.Of(FechaDevolucion)
     );