Last change
on this file since 1123 was 1111, checked in by Sam Habiel, 14 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:
472 bytes
|
Rev | Line | |
---|
[1111] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 |
|
---|
| 6 | namespace IndianHealthService.ClinicalScheduling
|
---|
| 7 | {
|
---|
| 8 | /// <summary>
|
---|
| 9 | /// Provider puppet
|
---|
| 10 | /// </summary>
|
---|
| 11 | public class Provider
|
---|
| 12 | {
|
---|
| 13 | public int IEN { get; set; }
|
---|
| 14 | public string Name { get; set; }
|
---|
| 15 | public bool Default { get; set; }
|
---|
| 16 |
|
---|
| 17 | public override string ToString()
|
---|
| 18 | {
|
---|
| 19 | return Name;
|
---|
| 20 | }
|
---|
| 21 | }
|
---|
| 22 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.