/// <summary>
        ///     Obtiene la Lista de Costos del Embarque
        /// </summary>
        /// <param name="entradaGanado"></param>
        /// <returns></returns>
        internal List <EntradaGanadoCostoInfo> ObtenerPorEmbarqueID(EntradaGanadoInfo entradaGanado)
        {
            List <EntradaGanadoCostoInfo> result = null;

            try
            {
                Logger.Info();
                Dictionary <string, object> parameters = AuxCostoEmbarqueDetalleDAL.ObtenerParametroPorEmbarqueID(entradaGanado);
                DataSet ds = Retrieve("[dbo].[CostoEmbarqueDetalle_ObtenerPorCostoPorEmbarque]", parameters);
                if (ValidateDataSet(ds))
                {
                    result = MapCostoEmbarqueDetalleDAL.ObtenerPorEmbarqueID(ds);
                }
            }
            catch (SqlException ex)
            {
                Logger.Error(ex);
                throw new ExcepcionServicio(MethodBase.GetCurrentMethod(), ex);
            }
            catch (DataException ex)
            {
                Logger.Error(ex);
                throw new ExcepcionServicio(MethodBase.GetCurrentMethod(), ex);
            }
            catch (Exception ex)
            {
                Logger.Error(ex);
                throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
            }
            return(result);
        }