2026-04-14 09:56:31 +10:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
2024-07-01 12:09:01 +10:00
|
|
|
|
using PARR.DAL.Context;
|
|
|
|
|
|
using PARR.DAL.Models;
|
2026-04-14 09:56:31 +10:00
|
|
|
|
using PARR.DAL.Repositories.Base;
|
2024-07-01 12:09:01 +10:00
|
|
|
|
using PARR.DAL.Services.Interfaces;
|
|
|
|
|
|
|
|
|
|
|
|
namespace PARR.DAL.Services.Implementations
|
|
|
|
|
|
{
|
2026-04-14 09:56:31 +10:00
|
|
|
|
internal class DistributionPeriodService : BaseRepository<DistributionPeriod>, IDistributionPeriodService
|
2024-07-01 12:09:01 +10:00
|
|
|
|
{
|
2026-04-14 09:56:31 +10:00
|
|
|
|
public DistributionPeriodService(DataContext dataContext, ILogger<DistributionPeriodService> logger) : base(logger, dataContext) { }
|
2024-07-01 12:09:01 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|