Esempio n. 1
0
        public async Task <Credito> PostActualizarEstadoCredito(int creditoID, string accion)
        {
            Credito ent = new Credito();

            try
            {
                ent.CreditoID = creditoID;

                if (accion == "APROBAR")
                {
                    ent.Estado = "APROBAR";
                }
                else if (accion == "RECHAZAR")
                {
                    ent.Estado = "RECHAZAR";
                }

                var lista = creditoService.ActualizarEstadoCredito(ent, connString);
                return(await lista);
            }
            catch (Exception e)
            {
                ent = null;
                Console.Write("Error" + e.ToString());
            }
            return(ent);
        }