using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PTMedicalInsurance.Helper
{
class DropHelper
{
///
/// 证件类型
///
public Dictionary CredenecType()
{
Dictionary ct = new Dictionary();
//List ct = new List();
//ct.Add("01", "居民身份证");
ct.Add("02", "居民身份证");
ct.Add("03", "社保卡");
return ct;
}
///
/// 病种名称
///
///
public Dictionary DiseName()
{
Dictionary ct = new Dictionary();
//List ct = new List();
ct.Add("M07000", "痛风");
ct.Add("M07807", "慢性肾脏病");
ct.Add("M01703", "甲状腺毒性心脏病");
ct.Add("M07200", "强直性脊柱炎");
return ct;
}
///
/// 业务类型
///
///
public Dictionary BizType()
{
Dictionary ct = new Dictionary();
ct.Add("1", "一类门特");
ct.Add("2", "二类门特");
return ct;
}
///
/// 业务类型
///
///
public Dictionary Medinsinfo()
{
Dictionary ct = new Dictionary();
ct.Add("2399001000058", "哈尔滨普瑞眼科医院");
ct.Add("3100001000345", "上海普瑞眼科医院");
return ct;
}
public class ComboBoxItem
{
private string _text = null;
private object _value = null;
public string Text { get { return this._text; } set { this._text = value; } }
public object Value { get { return this._value; } set { this._value = value; } }
public override string ToString()
{
return this._text;
}
}
}
}