feat(api): paginationQuery добавлен параметр отключения пагинации. Контроллер ApplicationInWorks GetAll.

This commit is contained in:
Mikhail Kuznetsov
2024-03-12 15:09:12 +10:00
parent 10661a88c6
commit 27b051a987
8 changed files with 140 additions and 9 deletions

View File

@@ -283,6 +283,21 @@ namespace PARR.API.Contracts.V1
#endregion
#region Job
/// <summary>
/// Альтернативная сущность AppliationInWork
/// </summary>
public static class Job
{
public const string GetAll = Base + "/jobs/";
//public const string Get = Base + "/jobs/" + getParam;
public const string getParam = "{id}";
}
#endregion
}
}