2023-12-31 19:55:22 +03:30
|
|
|
|
namespace NetinaShop.Repository.Repositories.Entity;
|
2023-12-20 10:37:44 +03:30
|
|
|
|
|
|
|
|
|
|
public class DiscountRepository : BaseRepository<Discount>, IDiscountRepository
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
public DiscountRepository(ApplicationContext dbContext, ICurrentUserService currentUserService) : base(dbContext, currentUserService)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|