feat(api): TemplateHistoryController
This commit is contained in:
21
PARR.DAL/Services/Implementations/ParrComponentService.cs
Normal file
21
PARR.DAL/Services/Implementations/ParrComponentService.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using PARR.DAL.Context;
|
||||
using PARR.DAL.Models;
|
||||
using PARR.DAL.Services.Interfaces;
|
||||
|
||||
namespace PARR.DAL.Services.Implementations
|
||||
{
|
||||
internal class ParrComponentService : IParrComponentService
|
||||
{
|
||||
private readonly DataContext dataContext;
|
||||
|
||||
public ParrComponentService(DataContext dataContext)
|
||||
{
|
||||
this.dataContext = dataContext;
|
||||
}
|
||||
|
||||
public IQueryable<ParrComponent> Get()
|
||||
{
|
||||
return dataContext.ParrComponents;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user