Exemplo n.º 1
0
 public async Task Create(ListaOC model)
 {
     try
     {
         _db.DbSetListaOC.Add(model);
         await _db.SaveChangesAsync();
     }
     catch (Exception e)
     {
         throw new Exception(e.Message, e);
     }
 }
Exemplo n.º 2
0
        public async Task <IHttpActionResult> UpdateEstado([FromBody] ListaOC model)
        {
            try
            {
                log.Info(new MDCSet(this.ControllerContext.RouteData));
                await _entityRepo.UpdateEstado(model);

                return(Ok("Registro actualizado exitosamente!"));
            }
            catch (Exception e)
            {
                log.Error(new MDCSet(this.ControllerContext.RouteData), e);
                return(InternalServerError(e));
            }
        }
Exemplo n.º 3
0
        public async Task UpdateEstado(ListaOC model)
        {
            try
            {
                var _model = await _db.DbSetListaOC.FirstOrDefaultAsync(e => e.ListaId == model.ListaId);

                if (_model != null)
                {
                    _model.Estado = model.Estado;
                    await _db.SaveChangesAsync();
                }
            }
            catch (Exception e)
            {
                throw new Exception(e.Message, e);
            }
        }
Exemplo n.º 4
0
        public async Task Update(ListaOC model)
        {
            try
            {
                var _model = await _db.DbSetListaOC.FirstOrDefaultAsync(e => e.ListaId == model.ListaId);

                if (_model != null)
                {
                    _db.Entry(_model).CurrentValues.SetValues(model);
                    await _db.SaveChangesAsync();
                }
            }
            catch (Exception e)
            {
                throw new Exception(e.Message, e);
            }
        }
Exemplo n.º 5
0
        public async Task <IHttpActionResult> Create([FromBody] ListaOC 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);
                return(InternalServerError(e));
            }
        }