using NetinaShop.Repository.Repositories.Base; using System.Threading; namespace NetinaShop.Repository.Repositories.Entity; public class DiscountRepository : BaseRepository, IDiscountRepository { public DiscountRepository(ApplicationContext dbContext, ICurrentUserService currentUserService) : base(dbContext, currentUserService) { } }