public bool AddNewCoupon(CouponDto couponDto) { var entity = _dtoMapper.Map(couponDto); return(_couponRepository.AddNew(entity)); }