2011-03-23 05:15:51 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace IndianHealthService.ClinicalScheduling
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Provider puppet
|
|
|
|
|
/// </summary>
|
2011-05-08 05:17:53 -04:00
|
|
|
|
[Serializable]
|
2011-03-23 05:15:51 -04:00
|
|
|
|
public class Provider
|
|
|
|
|
{
|
|
|
|
|
public int IEN { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public bool Default { get; set; }
|
|
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
|
|
|
|
return Name;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|