PageRenderTime 74ms CodeModel.GetById 26ms RepoModel.GetById 0ms app.codeStats 0ms

/Source/Samples/Blog/Bifrost.Samples.Blog.Views/Posts/IPostStatisticsService.cs

#
C# | 9 lines | 8 code | 1 blank | 0 comment | 0 complexity | 08a7f49eb4419f0aca986d641a3534ac MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  1. using System;
  2. namespace Bifrost.Samples.Blog.Views.Posts
  3. {
  4. public interface IPostStatisticsService
  5. {
  6. void AggregateForMonth(int year, int month, params Guid[] postsToExclude);
  7. }
  8. }