コード例 #1
0
 public int Insertar(PrestamoModel prestamoModel)
 {
     prestamoBll = new PrestamoBll();
     return(prestamoBll.Insertar(prestamoModel));
 }
コード例 #2
0
 public int Actualizar(PrestamoModel prestamoModel)
 {
     prestamoBll = new PrestamoBll();
     return(prestamoBll.Actualizar(prestamoModel));
 }
コード例 #3
0
 public List <PrestamoDto> SeleccionarTodosInactivos()
 {
     prestamoBll = new PrestamoBll();
     return(prestamoBll.SeleccionarTodoInactivos());
 }