Files
parr_api/PARR.DAL/Services/Implementations/SubprocessService.cs

15 lines
429 B
C#
Raw Normal View History

using Microsoft.Extensions.Logging;
2023-09-20 11:52:30 +10:00
using PARR.DAL.Context;
using PARR.DAL.Models;
using PARR.DAL.Repositories.Base;
2023-09-20 11:52:30 +10:00
using PARR.DAL.Services.Interfaces;
namespace PARR.DAL.Services.Implementations
{
internal class SubprocessService : BaseRepository<Subprocess>, ISubprocessService
2023-09-20 11:52:30 +10:00
{
public SubprocessService(ILogger<SubprocessService> logger, DataContext dataContext) : base(logger, dataContext) { }
2023-09-20 11:52:30 +10:00
}
}