using _0_Framework.InfraStructure; using Company.Domain.GroupPlanAgg; namespace CompanyManagment.EFCore.Repository; public class GroupPlanRepository : RepositoryBase, IGroupPlanRepository { private readonly CompanyContext _context; public GroupPlanRepository(CompanyContext context) : base(context) { _context = context; } }