source: Scheduling/trunk/cs/bsdx0200GUISourceCode/UserPreferences.cs@ 1112

Last change on this file since 1112 was 1111, checked in by Sam Habiel, 13 years ago

CGAppointment: Added Provider as a Member of Class. (auto property)
CGDocument: No changes
CGDocumentManager: Added UserPreferences as a member of a Class (private and property)
CGView: Changes to support printing of Routing Slip
DAppointPage: Changes to support UserPreferences member for auto printing the routing slips
DCheckIn: Extensive changes in load code (now uses LINQ instead of ADO.net). Changes to support UserPreferences member for auto printing the routing slips.
Patient: Documentation for UserFriendlyAge.
Provider: New class to represent Provider
UserPreferences: New class to represent User preferences. Does not interact with DB right now.

File size: 600 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace IndianHealthService.ClinicalScheduling
7{
8 /// <summary>
9 /// Designed to keep user preferences. Very basic for now.
10 /// </summary>
11 public class UserPreferences
12 {
13 public UserPreferences()
14 {
15 PrintAppointmentSlipAutomacially = false;
16 PrintRoutingSlipAutomatically = false;
17 }
18
19 public bool PrintAppointmentSlipAutomacially { get; set; }
20 public bool PrintRoutingSlipAutomatically { get; set; }
21 }
22}
Note: See TracBrowser for help on using the repository browser.