13 lines
412 B
C#
13 lines
412 B
C#
using Microsoft.Extensions.Logging;
|
|
using PARR.Core.Repositories.Interfaces;
|
|
using PARR.DAL.Context;
|
|
using PARR.DAL.Repositories.Base;
|
|
using PARR.Domain.Entities;
|
|
|
|
namespace PARR.DAL.Repositories
|
|
{
|
|
internal class OrderRepository : BaseRepository<Order>, IOrderRepository
|
|
{
|
|
public OrderRepository(DataContext dataContext, ILogger<OrderRepository> logger) : base(logger, dataContext) { }
|
|
}
|
|
} |