using Model;
|
using System.Collections.Generic;
|
namespace BLL
|
{
|
public interface IDALErpDetail
|
{
|
//bool IsExist(string name, string value);
|
//bool IsExist(Hashtable ht);
|
bool Add(List<ErpMat> model);
|
bool Update(List<ErpMat> model);
|
bool Delete(List<ErpMat> EMats);
|
//ErpMat GetModel(string RoleNum);
|
|
IList<ErpMat> GetList(string OrdNo);
|
|
//DataTable GetDataTable(string[] strWhere);
|
|
|
}
|
}
|