public async Task <IList <OrderDiscountDto> > GetAsync()
        {
            var discounts = await orderDiscountRepository.GetListAsync();

            return(mapper.Map <IList <OrderDiscountDto> >(discounts.OrderByDescending(s => s.IsActive)));
        }