Implement camera bug report system with CRUD operations and logging

This commit is contained in:
2025-12-07 17:54:55 +03:30
parent 3c0ec01f77
commit 167b2bce09
35 changed files with 2879 additions and 6 deletions

View File

@@ -118,6 +118,7 @@ using Company.Domain.WorkshopSubAccountAgg;
using Company.Domain.YearlySalaryAgg;
using Company.Domain.YearlySalaryItemsAgg;
using Company.Domain.YearlysSalaryTitleAgg;
using Company.Domain.CameraBugReportAgg;
using CompanyManagment.EFCore.Mapping;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Conventions;
@@ -323,6 +324,11 @@ public class CompanyContext : DbContext
public DbSet<Employer> Employers { get; set; }
#region BugReport
public DbSet<CameraBugReport> CameraBugReports { get; set; }
public DbSet<CameraBugReportLog> CameraBugReportLogs { get; set; }
public DbSet<CameraBugReportScreenshot> CameraBugReportScreenshots { get; set; }
#endregion
public CompanyContext(DbContextOptions<CompanyContext> options) :base(options)
{