public IActionResult ConsultarPorId([FromBody] ConsultaKardexPlantaPorIdRequestDTO request)
        {
            Guid guid = Guid.NewGuid();

            _log.RegistrarEvento($"{guid.ToString()}{Environment.NewLine}{Newtonsoft.Json.JsonConvert.SerializeObject(request)}");

            ConsultaKardexPlantaPorIdResponseDTO response = new ConsultaKardexPlantaPorIdResponseDTO();

            try
            {
                response.Result.Data = _KardexPlantaService.ConsultarKardexPlantaPorId(request);

                response.Result.Success = true;
            }
            catch (ResultException ex)
            {
                response.Result = new Result()
                {
                    Success = true, ErrCode = ex.Result.ErrCode, Message = ex.Result.Message
                };
            }
            catch (Exception ex)
            {
                response.Result = new Result()
                {
                    Success = false, Message = "Ocurrio un problema en el servicio, intentelo nuevamente."
                };
                _log.RegistrarEvento(ex, guid.ToString());
            }

            _log.RegistrarEvento($"{guid.ToString()}{Environment.NewLine}{Newtonsoft.Json.JsonConvert.SerializeObject(response)}");

            return(Ok(response));
        }
Esempio n. 2
0
 public ConsultaKardexPlantaPorIdBE ConsultarKardexPlantaPorId(ConsultaKardexPlantaPorIdRequestDTO request)
 {
     return(_IKardexPlantaRepository.ConsultarKardexPlantaPorId(request.KardexPlantaId));
 }