13 lines
370 B
C#
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;
|
|
}
|
|
} |