// This is a file of data to use as the input to your system. // You should name this file Tinput.txt // These data items will provide the initial data that you have // previously entered by hand // This is the information that would be initially put into the system // so that the menu of operations could be used on this data. // // For Lab #3: // Use this file of data as initial input for one test (or // one set of tests) that you execute // You may rearrange the order of the data items to match your // own input commands // You must include all data in this file // You may add additional data items // // For Lab #3, you may remove the comment lines from the file if desired // // If you rearrange the data and/or if you add additional // items of data and/or remove comments, // please include your final version of this Tinput.txt // file as one of the items you turn in // // For your lab testing, you should also make two other files of data to // use as input and run your program with them // // Performance hall data - including seats, budget // name // current performance with information about the performance group // maximum and minimum ticket prices // maximum and minimum number of seats per performance // maximum yearly operating budget // list of performance contracts (strings seperated by ;) // accounts for expenses and income (account numbers) // list of contracts with companies that are not // performance groups for the next 12 months // hall manager // hall staff members (ushers, ticket sellers, show crew, other) // hall contracting agent // list of donors // Bass Performance Hall Loretta Lynn 49.50 132.00 2000 2056 890000 Loretta Lynn; 1964 The Tribute; Brahms and Dvorak, Fort Worth Symphony Orchestra; Lyle Lovett and his Large Band; Nice Work If You Can Get It; A Tribute to Marvin Hamlisch, One Singular Sensation!; UNT One O'Clock Lab Band; The Sleeping Beauty; Susan Boyle; Hal Holbrook in "Mark Twain Tonight!"; American Ballads; Elf; Messiah; The Nutcracker; 2468000 1357999 Abuelo's Catering; GCG Marketing; PAVLOV Agency; Spring Creek Barbeque; Chris Sanders Taylor Woods; Pamela Brown; Marisa Maschino; Dee Spring Nancy_Lee Bass; Perry_R. Bass; David McDavid; // // Performances data // including completed performance data, // Title of performance on one single line // ticket data, seats sold data // Ticket sales amount; Total seats sold // name of performance group; // Name of performers group // catering requirements, // REGULAR or VEGETARIAN or VEGAN or GLUTENFREE // Date and time (24-hour clock) of performance start // MM/DD/YYYY HH:MM // ticket price(s) ? there must be at least one on the line // DDD.CC; DD.CC; DD.CC // number of tickets sold, number of seats/tickets still available, // Number tickets, number seats available a) Ticket price per seat per category b) Available seat categories (festival, box, orchestra, special) // amount spent on advertising, amount spent on catering, // Advertising cost; catering cost // amount guaranteed to performance group per performance, and // Minimum guaranteed pay to group // any other info you feel pertinent. // Jersey Boys 15545; 1995 Jersey Boys Touring Company REGULAR 06/15/2014 20:00 132.50; 99.00; 75.25 1950; 5 2870.00; 3350.00 5000 // // Performances group/ company data - superclass info // Company Address // Street Address // City // State/Province // Country // Postal Code (Zip) // List of services/items available // Contact person Last Name // Contact person First Name // Contact person job title // Company contact phone number // // // Performances group data ? including superclass data // Current performance group name // Company Address // Street Address // City // State/Province // Country // Postal Code (Zip) // List of services/items available // Contact person Last Name // Contact person First Name // Contact person job title // Company contact phone number // Current total expenses for current performance // List advertising and catering companies // Performance date, time, and day // (in a PDate object - see PDate class below) // Available number of seats // Minimum number of seats guaranteed // Total seats/tickets sold // Ticket price per seat // Advertising and catering maximum budgets per performance // contracting agent; // number of performances contracted; // Performer/Leader First Name // Performer/Leader Last Name // Performer/Leader Date of Birth (in a PDate object) // Agent First Name // Agent Last Name // Agent Phone Number // Agent Email Address // Minimum performance pay Jersey Boys Touring Company // Advertising companies // Company Address // Street Address // City // State/Province // Country // Postal Code (Zip) // List of services/items available // Contact person Last Name // Contact person First Name // Contact person job title // Company contact phone number // Contracts // performance contract // including dates, times, and days; performance group; number of seats; // minimum seats guaranteed; min. advertising budget // Catering companies // Ticket data // Accounts // Current date //PDate 1. Date including - default date is January 1, 2015, 1-1-2015, 1/1/2015 a. Month as a string fully spelled out b. Month as a number from 1 to 12 c. Day as a number d. Year as a four digit number e. Day of week as a string ("Thursday", "Sunday", etc.) 2. Time including Ð default time is 00:00 a. Hour using a 12 hour clock (1 to 12) b. Minute as a number between 0 and 59 c. Morning or evening designator string "AM" or "PM" d. Hour using a 24 hour clock (0 to 23)