Пример #1
0
 public async Task Create(SegmentoMercado model)
 {
     try
     {
         _db.SegmentoMercado.Add(model);
         await _db.SaveChangesAsync();
     }
     catch (Exception e)
     {
         throw new Exception(e.Message, e);
     }
 }
Пример #2
0
        public async Task Update(SegmentoMercado model)
        {
            try
            {
                var _model = await _db.SegmentoMercado.FirstOrDefaultAsync(e => e.SegmentoMercadoId == model.SegmentoMercadoId);

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

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

                    await _db.SaveChangesAsync();
                }
            }
            catch (Exception e)
            {
                throw new Exception(e.Message, e);
            }
        }
                                                             public async Task <IHttpActionResult> UpdateEstado([FromBody] SegmentoMercado 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] SegmentoMercado 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] SegmentoMercado 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)); }
                                                             }