Esempio n. 1
0
 public virtual ICollection <ShoutedStory> GetPublishedByCategory(string category, int start, int max)
 {
     Check.Argument.IsNotEmpty(category, "category");
     Check.Argument.IsNotNegative(start, "start");
     Check.Argument.IsNotNegative(max, "max");
     return(CurrentDataSource.GetStoriesByCategory(category, start, max));
 }