public IEnumerable<DaysFootballPredictions> GetDaysFootballPredictions(DateTime predictionsDate)
 {
   var args = new DaysFootballPredictionsArgs()
   {
     PredictionDate = predictionsDate
   };
   return
     base.ExecuteStoredProc<DaysFootballPredictions, DaysFootballPredictionsArgs>(args)
         .ToList();
 }
Exemple #2
0
        public IEnumerable <DaysFootballPredictions> GetDaysFootballPredictions(DateTime predictionsDate)
        {
            var args = new DaysFootballPredictionsArgs()
            {
                PredictionDate = predictionsDate
            };

            return
                (base.ExecuteStoredProc <DaysFootballPredictions, DaysFootballPredictionsArgs>(args)
                 .ToList());
        }