/// <summary> /// 更新問卷調查 /// </summary> /// <param name="otherExamination">被更新的問卷調查</param> /// <returns>更新後的問卷調查</returns> public OtherExamination UpdateOtherExamination(OtherExamination otherExamination) { return FTISDao.UpdateOtherExamination(otherExamination); }
/// <summary> /// 刪除問卷調查 /// </summary> /// <param name="otherExamination">被刪除的問卷調查</param> public void DeleteOtherExamination(OtherExamination otherExamination) { FTISDao.DeleteOtherExamination(otherExamination); }
/// <summary> /// 新增問卷調查 /// </summary> /// <param name="otherExamination">被新增的問卷調查</param> /// <returns>新增後的問卷調查</returns> public OtherExamination CreateOtherExamination(OtherExamination otherExamination) { return FTISDao.CreateOtherExamination(otherExamination); }