| Last change
 on this file since 1594 was             1174, checked in by Sam Habiel, 14 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 | 
      
      
| 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> | 
|---|
| [1174] | 11 | [Serializable] | 
|---|
| [1111] | 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.