public async Task Create(CompetenciasTecnicas model)
 {
     try
     {
         _db.comptenciasTecnicas.Add(model);
         await _db.SaveChangesAsync();
     }
     catch (Exception e)
     {
         throw new Exception(e.Message, e);
     }
 }
        public async Task UpdateEstado(CompetenciasTecnicas obj)
        {
            try
            {
                var _obj = await _db.comptenciasTecnicas.FirstOrDefaultAsync(e => e.CompetenciaId == obj.CompetenciaId);

                if (_obj != null)
                {
                    _obj.Estado = obj.Estado;
                    await _db.SaveChangesAsync();
                }
            }
            catch (Exception e)
            {
                throw new Exception(e.Message, e);
            }
        }
        public async Task Update(CompetenciasTecnicas model)
        {
            try
            {
                var _model = await _db.comptenciasTecnicas.FirstOrDefaultAsync(e => e.CompetenciaId == model.CompetenciaId);

                if (_model != null)
                {
                    _db.Entry(_model).CurrentValues.SetValues(model);
                    await _db.SaveChangesAsync();
                }
            }
            catch (Exception e)
            {
                throw new Exception(e.Message, e);
            }
        }
                                                                public async Task <IHttpActionResult> UpdateEstado(CompetenciasTecnicas 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)); }
                                                                }
                                                                [HttpPost][Authorize] public async Task <IHttpActionResult> Create(CompetenciasTecnicas obj)
                                                                {
                                                                    try { log.Info(new MDCSet(this.ControllerContext.RouteData));
                                                                          await _repository.Create(obj);

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