using System; using System.Collections.Generic; using _0_Framework.InfraStructure; using Company.Domain.WorkingHoursTempItemAgg; using CompanyManagment.App.Contracts.WorkingHoursTempItem; namespace CompanyManagment.EFCore.Repository; public class WorkingHoursTempItemRepository : RepositoryBase, IWorkingHoursTempItemRepository { private readonly CompanyContext _context; public WorkingHoursTempItemRepository(CompanyContext context) : base(context) { _context = context; } public List GetTempItemByWorkingHourstempId(long workingHoursTempId) { throw new NotImplementedException(); } public List GetLongsByWorkingHoursTempId(long workingHoursTempId) { throw new NotImplementedException(); } }