public IHttpActionResult eliminarTipoCuenta(CuentaBancariaRequest model) { CuentaBancariaDataAccess _tipoCuentaDataAccess = new CuentaBancariaDataAccess(); BaseResponse <string> result = new BaseResponse <string>(); result = _tipoCuentaDataAccess.EliminarTipoCuentaBancaria(model); return(Ok(result)); }
public BaseResponse <string> EditarTipoCuentaBancaria(CuentaBancariaRequest model) { BaseResponse <string> result = new BaseResponse <string>(); using (MesaDineroContext context = new MesaDineroContext()) { using (var transaccion = context.Database.BeginTransaction()) { try { Tb_MD_TipoCuentaBancaria cuenta = context.Tb_MD_TipoCuentaBancaria.Find(model.codigo); if (cuenta == null) { throw new Exception("Entidad Nula, Tipo de Cuenta Bancaria no encontrado"); } cuenta.Nombre = model.nombre; cuenta.EstadoRegistro = model.estado; context.SaveChanges(); transaccion.Commit(); result.success = true; } catch (System.Data.Entity.Validation.DbEntityValidationException ex) { #region Error EntityFramework var errorMessages = ex.EntityValidationErrors .SelectMany(x => x.ValidationErrors) .Select(x => x.ErrorMessage); var fullErrorMessage = string.Join("; ", errorMessages); result.success = false; result.error = fullErrorMessage; transaccion.Rollback(); #endregion } catch (Exception ex) { result.success = false; transaccion.Rollback(); result.error = ex.InnerException != null ? ex.InnerException.Message : ex.Message; } } } return(result); }