/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

  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. }