public int Insertar(PrestamoModel prestamoModel)
 {
     prestamoBll = new PrestamoBll();
     return(prestamoBll.Insertar(prestamoModel));
 }
 public int Actualizar(PrestamoModel prestamoModel)
 {
     prestamoBll = new PrestamoBll();
     return(prestamoBll.Actualizar(prestamoModel));
 }
 public List <PrestamoDto> SeleccionarTodosInactivos()
 {
     prestamoBll = new PrestamoBll();
     return(prestamoBll.SeleccionarTodoInactivos());
 }