/// <summary>
 /// Method for comparing one coupon usage to another
 /// </summary>
 public int CompareTo(CouponUsage other)
 {
     return(Revenue.CompareTo(other.Revenue));
 }