21 lines
722 B
C#
21 lines
722 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using WebLib;
|
|
|
|
namespace Education
|
|
{
|
|
public class DAC_訓練溝通記錄歷程 : NameValueList
|
|
{
|
|
public DAC_訓練溝通記錄歷程()
|
|
{
|
|
this.Add("年度計劃溝通紀錄(包含老師、學員、主管、客戶)", 1);
|
|
this.Add("課程設計溝通紀錄(包含老師、學員、主管、客戶)", 2);
|
|
this.Add("課程執行溝通紀錄(課中執行情況)", 3);
|
|
this.Add("課後查核溝通紀錄(檢討會議紀錄)", 4);
|
|
this.Add("成果溝通紀錄(老師、學員、主管回饋、意見)", 5);
|
|
this.Add("其他", 999);
|
|
}
|
|
}
|
|
} |