using Model;
|
using System.Collections.Generic;
|
using System.Data;
|
namespace BLL
|
{
|
public interface IDALMoveDetail
|
{
|
bool IsExist(string name, string value);
|
bool Add(List<MoveMat> model);
|
bool Update(List<MoveMat> model);
|
bool Delete(List<MoveMat> EMats);
|
|
IList<MoveMat> GetList(string OrdNo);
|
DataTable GetDataTable(string[] strWhere);
|
|
|
}
|
}
|