/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
- using System;
-
- namespace Bifrost.Samples.Blog.Views.Posts
- {
- public interface IPostStatisticsService
- {
- void AggregateForMonth(int year, int month, params Guid[] postsToExclude);
- }
- }