feat(api): добавлена фильтрация для подпроцесса, тнк, работы по ИД родителя
This commit is contained in:
10
PARR.API/Contracts/V1/Requests/Queries/SubprocessQuery.cs
Normal file
10
PARR.API/Contracts/V1/Requests/Queries/SubprocessQuery.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace PARR.API.Contracts.V1.Requests.Queries
|
||||
{
|
||||
public class SubprocessQuery
|
||||
{
|
||||
/// <summary>
|
||||
/// Фильтр по ИД процесса
|
||||
/// </summary>
|
||||
public Guid? ProcessId { get; set; }
|
||||
}
|
||||
}
|
||||
10
PARR.API/Contracts/V1/Requests/Queries/TnkQuery.cs
Normal file
10
PARR.API/Contracts/V1/Requests/Queries/TnkQuery.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace PARR.API.Contracts.V1.Requests.Queries
|
||||
{
|
||||
public class TnkQuery
|
||||
{
|
||||
/// <summary>
|
||||
/// Фильтр по ИД подпроцесса
|
||||
/// </summary>
|
||||
public Guid? SubprocessId { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -16,5 +16,10 @@
|
||||
/// Поиск по ИД
|
||||
/// </summary>
|
||||
public Guid? Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Фильтр по ИД ТНК
|
||||
/// </summary>
|
||||
public Guid? TnkId { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user