Пример #1
0
        private async Task InsertaIntegranteGC(GrupoColegiadoPartInt model)
        {
            try
            {
                for (int i = 0; i < model.IntegrantesE.Length; i++)
                {
                    IntegranteGrupoColegiadoExterno obj = new IntegranteGrupoColegiadoExterno();

                    var item  = model.IntegrantesE[i];
                    var item2 = model.Cargos[i];

                    obj.GrupoColegiadoPartIntId = model.GrupoColegiadoPartIntId;
                    obj.ContactoId    = item;
                    obj.CargoGC       = item2;
                    obj.FechaRegistro = model.FechaRegistro;
                    obj.Autor         = model.Autor;
                    obj.Estado        = true;

                    var entities = _db.IntegranteGrupoColegiadoExterno.Add(obj);
                    await _db.SaveChangesAsync();
                }
            }
            catch (Exception e)
            {
                throw new Exception(e.Message, e);
            }
        }
Пример #2
0
        public async Task <IntegranteGrupoColegiadoExterno> Create(IntegranteGrupoColegiadoExterno model)
        {
            try
            {
                var result = _db.IntegranteGrupoColegiadoExterno.Add(model);
                await _db.SaveChangesAsync();

                return(result);
            }
            catch (Exception e)
            {
                throw new Exception(e.Message, e);
            }
        }
Пример #3
0
        public async Task Update(IntegranteGrupoColegiadoExterno model)
        {
            try
            {
                var _model = await _db.IntegranteGrupoColegiadoExterno.FirstOrDefaultAsync(e => e.IntegranteGrupoColegiadoExternoId == model.IntegranteGrupoColegiadoExternoId);

                if (_model != null)
                {
                    _db.Entry(_model).CurrentValues.SetValues(model);
                    await _db.SaveChangesAsync();
                }
            }
            catch (Exception e)
            {
                throw new Exception(e.Message, e);
            }
        }
Пример #4
0
        public async Task UpdateEstado(IntegranteGrupoColegiadoExterno model)
        {
            try
            {
                var _model = await _db.IntegranteGrupoColegiadoExterno.FirstOrDefaultAsync(e => e.IntegranteGrupoColegiadoExternoId == model.IntegranteGrupoColegiadoExternoId);

                if (_model != null)
                {
                    _model.Estado = model.Estado;

                    await _db.SaveChangesAsync();
                }
            }
            catch (Exception e)
            {
                throw new Exception(e.Message, e);
            }
        }
Пример #5
0
        private async Task EliminaIntegranteGC(GrupoColegiadoPartInt model)
        {
            try
            {
                foreach (var item in model.integrantesAntDel)
                {
                    //Crea el objeto de la tabla en la que se desea agregar el registro
                    IntegranteGrupoColegiadoExterno objSitioWeb = new IntegranteGrupoColegiadoExterno();

                    var _model = await _db.IntegranteGrupoColegiadoExterno.FirstOrDefaultAsync(e => e.IntegranteGrupoColegiadoExternoId == item);

                    if (_model != null)
                    {
                        _db.IntegranteGrupoColegiadoExterno.Remove(_model);
                        await _db.SaveChangesAsync();
                    }
                }
            }
            catch (Exception e)
            {
                throw new Exception(e.Message, e);
            }
        }
                                                                             public async Task <IHttpActionResult> UpdateEstado([FromBody] IntegranteGrupoColegiadoExterno model)
                                                                             {
                                                                                 try { log.Info(new MDCSet(this.ControllerContext.RouteData));
                                                                                       await _entityRepo.UpdateEstado(model);

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

                                                                                                       return(InternalServerError(e)); }
                                                                             }
                                                                             public async Task <IHttpActionResult> Update([FromBody] IntegranteGrupoColegiadoExterno model)
                                                                             {
                                                                                 if (!ModelState.IsValid)
                                                                                 {
                                                                                     return(BadRequest(ModelState));
                                                                                 }

                                                                                 try { log.Info(new MDCSet(this.ControllerContext.RouteData));
                                                                                       await _entityRepo.Update(model);

                                                                                       return(Ok("Registro actualizado exitosamente!")); }
                                                                                 catch (Exception e) { log.Error(new MDCSet(this.ControllerContext.RouteData), e);
                                                                                                       return(InternalServerError(e)); }
                                                                             }
                                                                             [Authorize] public async Task <IHttpActionResult> Create([FromBody] IntegranteGrupoColegiadoExterno model)
                                                                             {
                                                                                 if (!ModelState.IsValid)
                                                                                 {
                                                                                     return(BadRequest(ModelState));
                                                                                 }

                                                                                 try { log.Info(new MDCSet(this.ControllerContext.RouteData));
                                                                                       var result = await _entityRepo.Create(model);

                                                                                       return(Ok(result)); }
                                                                                 catch (Exception e) { log.Error(new MDCSet(this.ControllerContext.RouteData), e);
                                                                                                       if (e.Message.Substring(0, 44) == "An error occurred while updating the entries")
                                                                                                       {
                                                                                                           return(BadRequest("Ya existe un registro con ese nombre"));
                                                                                                       }
                                                                                                       return(InternalServerError(e)); }
                                                                             }