using Contracts.ViewModels; namespace Contracts.Services; public interface IReportPeriodService { Task> GetReportData(DateTime from, DateTime to); }