/// <summary> /// Obtiene una entidad por su descripción /// </summary> /// <param name="materialSAP"></param> /// <returns></returns> public ProductoInfo ObtenerPorMaterialSAP(string materialSAP) { try { Logger.Info(); var productoBL = new ProductoBL(); ProductoInfo result = productoBL.ObtenerPorMaterialSAP(materialSAP); return(result); } catch (ExcepcionGenerica) { throw; } catch (Exception ex) { Logger.Error(ex); throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex); } }