12 lines
364 B
C#
12 lines
364 B
C#
using NetinaShop.Repository.Repositories.Base;
|
|
using System.Threading;
|
|
|
|
namespace NetinaShop.Repository.Repositories.Entity;
|
|
|
|
public class DiscountRepository : BaseRepository<Discount>, IDiscountRepository
|
|
{
|
|
|
|
public DiscountRepository(ApplicationContext dbContext, ICurrentUserService currentUserService) : base(dbContext, currentUserService)
|
|
{
|
|
}
|
|
} |