Files
Backend-Api/CompanyManagment.EFCore/Repository/GroupPlanRepository.cs
2024-07-05 21:36:15 +03:30

13 lines
370 B
C#

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