comand and query for bug section

This commit is contained in:
gozareshgir
2026-01-27 16:11:31 +03:30
parent 17f117726e
commit e5c96c8bcb
6 changed files with 231 additions and 6 deletions

View File

@@ -80,7 +80,8 @@ public static class DependencyInjection
services.AddScoped<ITaskSectionActivityRepository, TaskSectionActivityRepository>();
services.AddScoped<IPhaseSectionRepository, PhaseSectionRepository>();
services.AddScoped<IProjectSectionRepository, ProjectSectionRepository>();
services.AddScoped<IBugSectionRepository, BugSectionRepository>();
services.AddScoped<ISkillRepository, SkillRepository>();
services.AddScoped<IUserRefreshTokenRepository, UserRefreshTokenRepository>();

View File

@@ -0,0 +1,16 @@
using GozareshgirProgramManager.Domain.ProjectAgg.Entities;
using GozareshgirProgramManager.Domain.ProjectAgg.Repositories;
using GozareshgirProgramManager.Infrastructure.Persistence._Common;
using GozareshgirProgramManager.Infrastructure.Persistence.Context;
using Microsoft.EntityFrameworkCore;
namespace GozareshgirProgramManager.Infrastructure.Persistence.Repositories;
public class BugSectionRepository : RepositoryBase<Guid,BugSection>, IBugSectionRepository
{
private readonly ProgramManagerDbContext _context;
public BugSectionRepository(ProgramManagerDbContext context) : base(context)
{
_context = context;
}
}