feat(api): Реализованы JobController, JobGroupController

This commit is contained in:
Mikhail Kuznetsov
2025-07-01 17:20:48 +10:00
parent f429b70410
commit 5bbf2e2db5
16 changed files with 855 additions and 44 deletions

View File

@@ -0,0 +1,17 @@
using PARR.API.Contracts.V1.Requests.BaseRequests;
namespace PARR.API.Contracts.V1.Requests.Queries
{
public class JobGroupQuery: FullQuery
{
/// <summary>
/// Поиск по имени
/// </summary>
public string? Name { get; set; }
/// <summary>
/// Поиск по короткому описанию
/// </summary>
public string? ShortDescription { get; set; }
}
}

View File

@@ -0,0 +1,15 @@
namespace PARR.API.Contracts.V1.Requests.Queries
{
public class JobQuery
{
/// <summary>
/// Поиск по имени
/// </summary>
public string? Name { get; set; }
/// <summary>
/// Поиск по Id группы работ
/// </summary>
public Guid? GroupId { get; set; }
}
}