using System; using System.Collections.Generic; using System.Linq; using System.Text; using SOH.Entities; using SOH.Data; namespace SOH.BLL { public interface Its_dd { List GetList(string param,string tj); List GetListBykhbm(int khbm); List GetListByddbm(int ddbm); List Getwshdd(string p); List Getwshdd2(string p); //销售审核函数(通过) OperationResult xssh(int ddbm, string xsshczy); //销售审核函数(不通过) OperationResult notxssh(int ddbm, string xsshczy); /// /// 获取未审核的订单(财务审核开始,必须销售审核成功后才可以财务审核) /// /// List Getcwsh(); //财务审核函数(通过) Data.OperationResult notcwsh(int ddbm, string cwshczy); //销售审核函数(不通过) Data.OperationResult cwsh(int ddbm, string cwshczy); /// /// 生成合同函数 /// /// 订单编码 /// 客户编码 /// Data.OperationResult scht(int ddbm, int khbm); Data.OperationResult Updatedd(ts_dd o); Data.OperationResult Insertdd(ts_dd o); Data.OperationResult Deldd(ts_dd o); } }