2024-11-27 14:24:59 +04:00
|
|
|
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);
|
2024-11-27 14:24:59 +04:00
|
|
|
}
|