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

28 lines
830 B
C#

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<long, WorkingHoursTempItem>, IWorkingHoursTempItemRepository
{
private readonly CompanyContext _context;
public WorkingHoursTempItemRepository(CompanyContext context) : base(context)
{
_context = context;
}
public List<WorkingHoursTempItemViweModel> GetTempItemByWorkingHourstempId(long workingHoursTempId)
{
throw new NotImplementedException();
}
public List<long> GetLongsByWorkingHoursTempId(long workingHoursTempId)
{
throw new NotImplementedException();
}
}