public static List <usp_GetClubSchedule_Result> GetClubSchedule(int clubId) { try { using (SmacEntities context = new SmacEntities()) { return(context.usp_GetClubSchedule(clubId).ToList()); } } catch (Exception ex) { throw ex; } }