domBudg/back/Contracts/Services/IReportPeriodService.cs

8 lines
202 B
C#
Raw Permalink Normal View History

using Contracts.ViewModels;
namespace Contracts.Services;
public interface IReportPeriodService
{
2024-12-11 04:02:26 +04:00
Task<IEnumerable<ChangeRecordViewModel>> GetReportData(DateTime from, DateTime to, Guid userId);
}