Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 407687
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T17:37:09+00:00 2026-05-12T17:37:09+00:00

For example, say we have a ticketing system that can be configured to offer

  • 0

For example, say we have a ticketing system that can be configured to offer tickets at normal price, but once you’re within X hours of the event, you offer them at a different price (it may be discounted or increased). We’ll call this the ‘rush price’. Moreover, once you’re within Y hours of the event, you offer them at yet another price. We’ll call this the ’emergency price’.

The class that represents this configuration information might look like this:

public class RushTicketPolicy {

    private int rushHours;
    private int emergencyHours;

    public RushTicketPolicy(int rushHours, int emergencyHours) {
        this.rushHours      = rushHours;
        this.emergencyHours = emergencyHours;
    }

    public int RushHours      { get { return this.rushHours; } }
    public int EmergencyHours { get { return this.emergencyHours; } }
}

I’m finding it extremely difficult to come up with names for these variables (and properties) that are sufficiently expressive and complete, without reference to the code that uses them and without additional inference.

That is, someone that hasn’t seen the rest of the code or know anything about its business requirements should be able to look at the variable names and understand that:

  • Rush sales start X hours before the event, inclusive.
  • Emergency sales start Y hours before the event, inclusive.

What are some names that would accomplish that?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T17:37:09+00:00Added an answer on May 12, 2026 at 5:37 pm
    public class SalesPeriodStartRule {
    
        private int mHoursBeforeEvent = 0;
    
        public SalesPeriodStartRule(int hoursBeforeEvent) {
            mHours = hoursBeforeEvent;
        }
        public DateTime GetEffectiveDate(DateTime showDate) {
            return showDate.AddHours(-mHoursBeforeEvent);
        }
    }
    
    public class PricingPolicy {
        private SalesPeriodStartRule mRushRule;
        private SalesPeriodStartRule mEmergencyRule;
    
        public PricingPolicy(SalesPeriodStartRule rushRule, SalesPeriodStartRule emergencyRule) {
            mRushRule      = rushRule;
            mEmergencyRule = emergencyRule;
        }
        public string GetPriceCategory(DateTime purchaseDate, DateTime showDate) {
            if (purchaseDate > mEmergencyRule.GetEffectiveDate(showDate)) {
                return "Emergency";
            }
            else if (purchaseDate > mRushRule.GetEffectiveDate(showDate)) {
                return "Rush";
            }
            else {
                return "Standard";
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For example: First, say I have a Silverlight app with Windowless=true so that I
This is a contrived example, but lets say I have declared objects: CustomObj fooObj;
As an example say I have a class foo that does not have a
Say I have a dialog open that has no id how can I find
Say I have a site on http://example.com . I would really like allowing bots
Say I have a web service http://www.example.com/webservice.pl?q=google which returns text google.com. I need to
Take a very simple case as an example, say I have this URL: http://www.example.com/65167.html
Say for example I have the following string: var testString = Hello, world; And
I have a webpage (say www.example.com/a.asp) .. I am having an iframe in this
If I have a Range object--for example, let's say it refers to cell A1

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.