#region
|
|
using System;
|
using System.Data;
|
using CSFrameworkV5.Common;
|
using CSFrameworkV5.Core;
|
|
#endregion
|
|
namespace CSFrameworkV5.Business
|
{
|
public class bllUnknow : bllBaseBusiness
|
{
|
public override bool ApprovalBusiness(DataRow summaryRow)
|
{
|
Msg.Warning("请实现功能!");
|
|
return false;
|
}
|
|
protected override void ClearAppInfo(DataRow summaryRow)
|
{
|
Msg.Warning("请实现功能!");
|
}
|
|
public override DataSet CreateSaveData(DataSet sourceData)
|
{
|
throw new NotImplementedException();
|
}
|
|
public override bool Delete(string keyValue)
|
{
|
Msg.Warning("请实现功能!");
|
return true;
|
}
|
|
public override DataTable GetAttachedFiles(string docNo)
|
{
|
Msg.Warning("请实现功能!");
|
return new DataTable();
|
}
|
|
public override DataSet GetDataByKey(string keyValue, bool resetCurrent)
|
{
|
Msg.Warning("请实现功能!");
|
return new DataSet();
|
}
|
|
public override bool IsApproved(DataRow summaryRow)
|
{
|
Msg.Warning("请实现功能!");
|
return false;
|
}
|
|
public override void NewBusiness()
|
{
|
Msg.Warning("请实现功能!");
|
}
|
|
public override void NotifyUser()
|
{
|
Msg.Warning("请实现功能!");
|
}
|
|
public override SaveResult Update(DataSet saveData)
|
{
|
Msg.Warning("请实现功能!");
|
return SaveResult.CreateDefault();
|
}
|
|
protected override void UpdateCommonFieldsValue(DataTable detail)
|
{
|
Msg.Warning("请实现功能!");
|
}
|
}
|
}
|