Ejemplo n.º 1
0
        public async Task Update(GrupoColegiadoPartInt model)
        {
            try
            {
                var _model = await _db.GrupoColegiadoPartInt.FirstOrDefaultAsync(e => e.GrupoColegiadoPartIntId == model.GrupoColegiadoPartIntId);

                if (_model != null)
                {
                    _db.Entry(_model).CurrentValues.SetValues(model);
                    await _db.SaveChangesAsync();

                    //if (model.IntegrantesN.Length >= 0)
                    //{
                    //    await ActualizaIntegranteGC(model);

                    //}
                    //if (model.integrantesAntDel.Length >= 0)
                    //{
                    //    await EliminaIntegranteGC(model);
                    //}
                }
            }
            catch (Exception e)
            {
                throw new Exception(e.Message, e);
            }
        }
Ejemplo n.º 2
0
        public async Task UpdateEstado(GrupoColegiadoPartInt model)
        {
            try
            {
                var _model = await _db.GrupoColegiadoPartInt.FirstOrDefaultAsync(e => e.GrupoColegiadoPartIntId == model.GrupoColegiadoPartIntId);

                if (_model != null)
                {
                    _model.Estado = model.Estado;
                    var infoAgregada = await _dbGEN.dbSetNuevoOC.Where(e => e.descripcion.Equals(_model.Contacto.NombreCompleto) && e.OcsId == "PARTINTGRUP").FirstOrDefaultAsync();

                    if (infoAgregada != null && model.Estado == false)
                    {
                        NuevoOCRepository repo = new NuevoOCRepository();
                        await repo.Delete(infoAgregada.NuevoOCId);
                    }
                    else
                    {
                        var _contacto = await _db.Contacto.FirstOrDefaultAsync(e => e.ContactoId == model.ContactoId);

                        if (_contacto != null)
                        {
                            await new NuevoOCRepository(_dbGEN).Create(new NuevoOC("CR", "PARTINTGRUP", _contacto.NombreCompleto, "IndexCR.html#/detallesGrupoColegiadoPartInt/" + model.GrupoColegiadoPartIntId));
                        }
                    }
                    await _db.SaveChangesAsync();
                }
            }
            catch (Exception e)
            {
                throw new Exception(e.Message, e);
            }
        }
Ejemplo n.º 3
0
        private async Task ActualizaIntegranteGC(GrupoColegiadoPartInt model)
        {
            try
            {
                if (model.IntegrantesN == null)
                {
                    foreach (var obj in  model.IntegranteGrupoColegiadoExterno)
                    {
                        obj.GrupoColegiadoPartIntId = model.GrupoColegiadoPartIntId;
                        obj.ContactoId    = obj.ContactoId;
                        obj.CargoGC       = obj.CargoGC;
                        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);
            }
        }
Ejemplo n.º 4
0
        private async Task InsertaIntegranteIIEGC(GrupoColegiadoPartInt model)
        {
            try
            {
                for (int i = 0; i < model.IntegrantesIE.Length; i++)
                {
                    IntegranteGrupoColegiadoInterno obj = new IntegranteGrupoColegiadoInterno();

                    var item  = model.IntegrantesIE[i];
                    var item2 = model.CargosI[i];
                    var item3 = model.NombresIE[i];

                    obj.GrupoColegiadoPartIntId = model.GrupoColegiadoPartIntId;
                    obj.ClaveEmpleado           = item;
                    obj.CargoGC       = item2;
                    obj.FechaRegistro = model.FechaRegistro;
                    obj.Autor         = model.Autor;
                    obj.Nombre        = item3;
                    obj.Estado        = true;

                    var entities = _db.IntegranteGrupoColegiadoInterno.Add(obj);
                    await _db.SaveChangesAsync();
                }
            }
            catch (Exception e)
            {
                throw new Exception(e.Message, e);
            }
        }
Ejemplo n.º 5
0
        public async Task Create(GrupoColegiadoPartInt model)
        {
            try
            {
                _db.GrupoColegiadoPartInt.Add(model);
                await _db.SaveChangesAsync();

                if (model.IntegrantesE.Length >= 0)
                {
                    await InsertaIntegranteGC(model);
                }

                if (model.IntegrantesIE.Length >= 0)
                {
                    await InsertaIntegranteIIEGC(model);
                }

                // await new NuevoOCRepository(_dbGEN).Create(new NuevoOC("CR", "PARTINTGRUPC", model.Nombre, "IndexCR.html#/detallesGrupoColegiadoPartIntC/" + model.GrupoColegiadoPartIntId));
                await new NuevoOCRepository(_dbGEN).Create(new NuevoOC("CR", "PARTINTGRUP", model.Nombre, "IndexCR.html#/detallesGrupoColegiadoPartInt/" + model.GrupoColegiadoPartIntId));
            }
            catch (Exception e)
            {
                throw new Exception(e.Message, e);
            }
        }
Ejemplo n.º 6
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);
            }
        }
Ejemplo n.º 7
0
                                                                   [Authorize] public async Task <IHttpActionResult> Create([FromBody] GrupoColegiadoPartInt model)
                                                                   {
                                                                       if (!ModelState.IsValid)
                                                                       {
                                                                           return(BadRequest(ModelState));
                                                                       }

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

                                                                             return(Ok("Registro creado exitosamente!")); }
                                                                       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)); }
                                                                   }
Ejemplo n.º 8
0
                                                                   public async Task <IHttpActionResult> UpdateEstado([FromBody] GrupoColegiadoPartInt 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)); }
                                                                   }
Ejemplo n.º 9
0
                                                                   public async Task <IHttpActionResult> Update([FromBody] GrupoColegiadoPartInt 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)); }
                                                                   }