Last change
on this file since 1675 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 | |
---|
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 | [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.