Ejemplo n.º 1
0
        public async Task Update(ComiteGI model)
        {
            try
            {
                var _model = await dbGI.DbSetComiteGI.FirstOrDefaultAsync(e => e.comiteId == model.comiteId);

                if (_model != null)
                {
                    if (!model.ExisteEn(dbGI.DbSetComiteGI.Where(e => e.comiteId != model.comiteId).Select(e => e.Nombre).ToList(), "Nombre"))
                    {
                        dbGI.Entry(_model).CurrentValues.SetValues(model);
                        await dbGI.SaveChangesAsync();
                    }
                    else
                    {
                        throw new ApplicationException("Ya existe un registro con ese nombre.");
                    }
                }
            }
            catch (ApplicationException e)
            {
                throw new ApplicationException(e.Message, e);
            }
            catch (Exception e)
            {
                throw new Exception(e.Message, e);
            }
        }
Ejemplo n.º 2
0
        public async Task <IHttpActionResult> Create([FromBody] ComiteGI model)
        {
            if (!ModelState.IsValid)
            {
                return(BadRequest(ModelState));
            }

            try
            {
                await _repo.Create(model);

                return(Ok("Registro creado exitosamente!"));
            }
            catch (ApplicationException e)
            {
                return(BadRequest(e.Message));
            }
            catch (Exception e)
            {
                return(InternalServerError(e));
            }
        }
Ejemplo n.º 3
0
 public async Task Create(ComiteGI model)
 {
     try
     {
         if (!model.ExisteEn(dbGI.DbSetComiteGI.Select(e => e.Nombre).ToList(), "Nombre"))
         {
             dbGI.DbSetComiteGI.Add(model);
             await dbGI.SaveChangesAsync();
         }
         else
         {
             throw new ApplicationException("Ya existe un registro con ese nombre.");
         }
     }
     catch (ApplicationException e)
     {
         throw new ApplicationException(e.Message, e);
     }
     catch (Exception e)
     {
         throw new Exception(e.Message, e);
     }
 }