source: Scheduling/trunk/cs/bsdx0200GUISourceCode/Provider.cs@ 1731

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

Absorbed all changed from Radiology Support branch.
Patient and Provider classes now serializable to address new bug: Availablity slots cannot be saved b/c these classes are not serializable.

File size: 492 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace IndianHealthService.ClinicalScheduling
7{
8 /// <summary>
9 /// Provider puppet
10 /// </summary>
11 [Serializable]
12 public class Provider
13 {
14 public int IEN { get; set; }
15 public string Name { get; set; }
16 public bool Default { get; set; }
17
18 public override string ToString()
19 {
20 return Name;
21 }
22 }
23}
Note: See TracBrowser for help on using the repository browser.