/// <summary> /// Gets the standings for a specified season and league /// </summary> /// <param name="seasonID">The ID of the selected season</param> /// <param name="leagueName">The name of the selected league</param> /// <returns>The result of the stored procedure execution</returns> public ObjectResult <GetSeasonStandingsForLeague_Result> GetSeasonStandingsForLeague(int?seasonID, string leagueName) { try { return(_dbContext.GetSeasonStandingsForLeague(seasonID, leagueName)); } catch (Exception ex) { _log.Error(ex.Message); throw; } }