public async Task <PaymentStatusDTO> UpdateAsync(PaymentStatusPutRequest model, ApiDbContext apiDbContext) { try { var paymentStatus = await apiDbContext.PaymentStatus.FindAsync(model.Id); if (paymentStatus == null) { throw new Exception($"No existe el estado de pago {model.Name} con id {model.Id}"); } var paymentStatusFound = apiDbContext.PaymentStatus.FirstOrDefault(p => p.Id != model.Id && p.Code.ToUpper().Trim().Equals(model.Code.ToUpper().Trim())); if (paymentStatusFound != null) { throw new Exception($"Ya existe un estado de pago con el código {model.Code}"); } paymentStatus.Code = model.Code; paymentStatus.Name = model.Name; await apiDbContext.SaveChangesAsync(); return(ModelToDTO(paymentStatus)); } catch (Exception e) { throw new Exception(e.Message); } }
public async Task <IActionResult> Update(PaymentStatusPutRequest model) { try { if (!ModelState.IsValid) { throw new Exception("Petición de actualización inválida"); } return(Ok(await _paymentStatusService.UpdateAsync(model, _apiDbContext))); } catch (Exception e) { return(StatusCode(500, e.Message)); } }