示例#1
0
        public int Insertar(PrestamoModel prestamoModel)
        {
            prestamoDal = new PrestamoDal();
            result      = prestamoDal.Insertar(prestamoModel);

            return(result);
        }
示例#2
0
        public int Actualizar(PrestamoModel prestamoModel)
        {
            prestamoDal = new PrestamoDal();
            result      = prestamoDal.Actualizar(prestamoModel);

            return(result);
        }
示例#3
0
        public List <PrestamoDto> SeleccionarTodoInactivos()
        {
            prestamoDal      = new PrestamoDal();
            lstPrestamoModel = prestamoDal.SeleccionarTodosInactivos();

            return(lstPrestamoModel);
        }