feat: implement missions and vehicles management with CRUD operations

Added new project structure for Azaion.Missions, including the MissionsController and VehiclesController for handling mission and vehicle management. Implemented DTOs for mission and vehicle creation and updates, along with service classes for business logic. Introduced database entities for Mission and Vehicle, and established relationships for data handling. Configured project dependencies and set up initial project properties.
This commit is contained in:
Oleksandr Bezdieniezhnykh
2026-05-15 04:35:40 +03:00
parent 78dea8ebab
commit 4f226e91d5
22 changed files with 0 additions and 58 deletions
+10
View File
@@ -0,0 +1,10 @@
namespace Azaion.Flights.DTOs;
public class GetFlightsQuery
{
public string? Name { get; set; }
public DateTime? FromDate { get; set; }
public DateTime? ToDate { get; set; }
public int Page { get; set; } = 1;
public int PageSize { get; set; } = 20;
}