public async Task<ActionResult> EditarTipoConceptoPago(CONT_TIPOCONCEPTOPAGOMODEL _model)
        {
            if (ModelState.IsValid)
            {

                try
                {
                    // comprobar la existencia del nombre
                    var _test = await _context.CONT_TIPOCONCEPTOPAGO.FirstOrDefaultAsync(i => i.NOMBRE == _model.NOMBRE);
                    //bool _nombreRepetido = false;
                    //_nombreRepetido = (_test.ID != _model.ID && _test.NOMBRE == _model.NOMBRE) ? true : false;

                    if (_test != null)
                    {
                        if (_test.ID != _model.ID)
                        {
                            ModelState.AddModelError("", "Ya existe un registro con este nombre, por favor elija otro!");
                            return View(_model);
                        }
                        else
                        {
                            // get entity
                            var _entity = new CONT_TIPOCONCEPTOPAGO();
                            _entity = await _context.CONT_TIPOCONCEPTOPAGO.FindAsync(_model.ID);

                            _entity.NOMBRE = _model.NOMBRE;
                            _entity.DESCRIPCION = _model.DESCRIPCION;


                            // guardar en el context
                            _context.Entry(_entity).State = EntityState.Modified;
                            await _context.SaveChangesAsync();

                            // to lista de TiposConceptoPago
                            return RedirectToAction("TiposConceptoPago", "Configuraciones");
                        }
                    }
                    else
                    {
                        // get entity
                        var _entity = new CONT_TIPOCONCEPTOPAGO();
                        _entity = await _context.CONT_TIPOCONCEPTOPAGO.FindAsync(_model.ID);

                        _entity.NOMBRE = _model.NOMBRE;
                        _entity.DESCRIPCION = _model.DESCRIPCION;


                        // guardar en el context
                        _context.Entry(_entity).State = EntityState.Modified;
                        await _context.SaveChangesAsync();

                        // to lista de TiposConceptoPago
                        return RedirectToAction("TiposConceptoPago", "Configuraciones");
                    }


                }
                catch (Exception ex)
                {
                    ModelState.AddModelError("", ex.Message);
                    return View(_model);
                }
            }

            return View(_model);
        } 
        public async Task<ActionResult> NuevoTipoConceptoPago(CONT_TIPOCONCEPTOPAGOMODEL _model)
        {
            if (ModelState.IsValid)
            {

                try
                {
                    // coprobar la existencia del nombre
                    if (_context.CONT_TIPOCONCEPTOPAGO.FirstOrDefault(i => i.NOMBRE == _model.NOMBRE) != null)
                    {
                        ModelState.AddModelError("", "Ya existe un registro con este nombre, por favor elija otro!");
                        return View(_model);
                    }
                    else
                    {
                        // get entity
                        var _entity = new CONT_TIPOCONCEPTOPAGO
                        {
                            NOMBRE = _model.NOMBRE,
                            DESCRIPCION = _model.DESCRIPCION
                        };

                        // guardar en el context
                        _context.CONT_TIPOCONCEPTOPAGO.Add(_entity);
                        await _context.SaveChangesAsync();

                        // to lista de TiposConceptoPago
                        return RedirectToAction("TiposConceptoPago", "Configuraciones");
                    }


                }
                catch (Exception ex)
                {
                    ModelState.AddModelError("", ex.Message);
                    return View(_model);
                }
            }

            return View(_model);
        }