public int Insertar(PrestamoModel prestamoModel) { prestamoDal = new PrestamoDal(); result = prestamoDal.Insertar(prestamoModel); return(result); }
public int Actualizar(PrestamoModel prestamoModel) { prestamoDal = new PrestamoDal(); result = prestamoDal.Actualizar(prestamoModel); return(result); }
public List <PrestamoDto> SeleccionarTodoInactivos() { prestamoDal = new PrestamoDal(); lstPrestamoModel = prestamoDal.SeleccionarTodosInactivos(); return(lstPrestamoModel); }