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

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

                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(ClasificacionAreas 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(ClasificacionAreas obj)
                                                            {
                                                                try { log.Info(new MDCSet(this.ControllerContext.RouteData));
                                                                      await _repository.Create(obj);

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