コード例 #1
0
                                                                      public async Task <IHttpActionResult> Update(CertificacionesObtenidas Obj)
                                                                      {
                                                                          try { log.Info(new MDCSet(this.ControllerContext.RouteData));

                                                                                //solución de ALAN replicada
                                                                                //if (Obj.Adjunto != null)
                                                                                //    Obj.AdjuntoId = Obj.Adjunto.AdjuntoId;
                                                                                await _repository.Update(Obj);

                                                                                return(Ok(Obj)); }
                                                                          catch (Exception e) { log.Error(new MDCSet(this.ControllerContext.RouteData), e);

                                                                                                return(InternalServerError(e)); }
                                                                      }
コード例 #2
0
                                                                      [HttpPost][Authorize] public async Task <IHttpActionResult> Create(CertificacionesObtenidas Obj)
                                                                      {
                                                                          try { log.Info(new MDCSet(this.ControllerContext.RouteData));
                                                                                await _repository.Create(Obj);

                                                                                return(Ok("Registro creado correctamente!")); }
                                                                          catch (Exception e) { log.Error(new MDCSet(this.ControllerContext.RouteData), e);

                                                                                                return(InternalServerError(e)); }
                                                                      }
コード例 #3
0
                                                                      public async Task <IHttpActionResult> UpdateEstado(CertificacionesObtenidas Obj)
                                                                      {
                                                                          try { log.Info(new MDCSet(this.ControllerContext.RouteData));
                                                                                await _repository.UpdateEstado(Obj);

                                                                                return(Ok("Registro actualizado correctamente!")); }
                                                                          catch (Exception e) { log.Error(new MDCSet(this.ControllerContext.RouteData), e);

                                                                                                return(InternalServerError(e)); }
                                                                      }
コード例 #4
0
                                                                    public async Task UpdateEstado(CertificacionesObtenidas Obj)
                                                                    {
                                                                        try
                                                                        {
                                                                            var result = await _ctx.CertificacionesObtenidas.FirstOrDefaultAsync(e => e.CertificacionesObtenidasId == Obj.CertificacionesObtenidasId);

                                                                            if (result != null)
                                                                            {
                                                                                result.EstadoFlujoId = Obj.EstadoFlujoId;

                                                                                await _ctx.SaveChangesAsync();
                                                                            }
                                                                        }
                                                                        catch (Exception e)
                                                                        {
                                                                            throw new Exception(e.Message, e);
                                                                        }
                                                                    }
コード例 #5
0
                                                                    public async Task Update(CertificacionesObtenidas Obj)// UpdateSolicitud
                                                                    {
                                                                        try
                                                                        {
                                                                            var result = await _ctx.CertificacionesObtenidas.FirstOrDefaultAsync(e => e.CertificacionesObtenidasId == Obj.CertificacionesObtenidasId);

                                                                            if (result != null)
                                                                            {
                                                                                if (Obj.Adjunto != null)
                                                                                {
                                                                                    AdjuntoRepository _adjuntoRepo = new AdjuntoRepository();
                                                                                    //Elimar archivo
                                                                                    if (Obj.Adjunto.nombre == "eliminar")
                                                                                    {
                                                                                        int id = Convert.ToInt32(Obj.Adjunto.AdjuntoId);
                                                                                        result.AdjuntoId = null;
                                                                                        Obj.AdjuntoId    = null;
                                                                                        await _ctx.SaveChangesAsync();

                                                                                        await _adjuntoRepo.Delete(id);
                                                                                    }
                                                                                    ///Agregar archivo al editar
                                                                                    if (Obj.Adjunto.AdjuntoId == 0)
                                                                                    {
                                                                                        if (result.AdjuntoId != null)
                                                                                        {
                                                                                            var id = result.AdjuntoId;
                                                                                            result.AdjuntoId = null;
                                                                                            await _ctx.SaveChangesAsync();

                                                                                            await _adjuntoRepo.Delete(id);
                                                                                        }
                                                                                        Adjunto key = await _adjuntoRepo.CreateAd(Obj.Adjunto);

                                                                                        Obj.AdjuntoId = key.AdjuntoId;
                                                                                    }
                                                                                }
                                                                                _ctx.Entry(result).CurrentValues.SetValues(Obj);

                                                                                await _ctx.SaveChangesAsync();


                                                                                PersonasRepository prep = new PersonasRepository();
                                                                                Personas           p    = await prep.GetByClave(Obj.ClavePersona);

                                                                                p.ultimaActualizacion = DateTime.Now;
                                                                                await prep.Update(p);
                                                                            }
                                                                        }
                                                                        catch (Exception e)
                                                                        {
                                                                            throw new Exception(e.Message, e);
                                                                        }
                                                                    }
コード例 #6
0
 public async Task Create(CertificacionesObtenidas Obj)
 {
     try
     {
         _ctx.CertificacionesObtenidas.Add(Obj);
         await _ctx.SaveChangesAsync();
     }
     catch (Exception e)
     {
         throw new Exception(e.Message, e);
     }
 }