Exemplo n.º 1
0
        public int Insertar(PrestamoModel prestamoModel)
        {
            prestamoDal = new PrestamoDal();
            result      = prestamoDal.Insertar(prestamoModel);

            return(result);
        }
Exemplo n.º 2
0
        public int Actualizar(PrestamoModel prestamoModel)
        {
            prestamoDal = new PrestamoDal();
            result      = prestamoDal.Actualizar(prestamoModel);

            return(result);
        }
Exemplo n.º 3
0
        public List <PrestamoDto> SeleccionarTodoInactivos()
        {
            prestamoDal      = new PrestamoDal();
            lstPrestamoModel = prestamoDal.SeleccionarTodosInactivos();

            return(lstPrestamoModel);
        }