using Model;
|
using System.Collections.Generic;
|
using System.Data;
|
namespace BLL
|
{
|
public interface IDALErpInDetail
|
{
|
bool IsExist(string name, string value);
|
bool Delete(List<ErpMat> EMats);
|
IList<ErpMat> GetList(string OrdNo);
|
IList<ErpDetails> GetList(AjaxErpInList models,ref PageInfo pageInfo);
|
DataTable GetDataTable(string[] strWhere);
|
|
DataTable GetPrintData(string OrdNo);
|
}
|
}
|