13 lines
404 B
C#
13 lines
404 B
C#
using _0_Framework.InfraStructure;
|
|
using Company.Domain.GroupPlanJobItemAgg;
|
|
|
|
namespace CompanyManagment.EFCore.Repository;
|
|
|
|
public class GroupPlanJobItemRepository :RepositoryBase<long, GroupPlanJobItem>, IGroupPlanJobItemRepository
|
|
{
|
|
private readonly CompanyContext _context;
|
|
public GroupPlanJobItemRepository(CompanyContext context) : base(context)
|
|
{
|
|
_context = context;
|
|
}
|
|
} |