feat(api): статистика по регламентным работам по ЗО, РГ, РР
This commit is contained in:
18
PARR.API/Services/Interfaces/IWorkLoadService.cs
Normal file
18
PARR.API/Services/Interfaces/IWorkLoadService.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using PARR.API.Contracts.V1.Requests.Queries;
|
||||
using PARR.DAL.Models;
|
||||
|
||||
namespace PARR.API.Services.Interfaces
|
||||
{
|
||||
/// <summary>
|
||||
/// Сервисы по формированию статистики загрузки рабочих групп/ЗО, и тд регламентными работами
|
||||
/// </summary>
|
||||
public interface IWorkLoadService
|
||||
{
|
||||
IQueryable<Template> FilterTemplatesQuery(IQueryable<Template> query, WorkloadBaseQuery requestQuery);
|
||||
|
||||
List<DateTimeOffset> GetDatesForPeriod(WorkloadBaseQuery requestQuery);
|
||||
|
||||
//DateTime GetEndDate(DateTime startDate, bool? isMonth);
|
||||
//DateTime GetStartDate();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user