using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Demo.IDAL.Basic
|
{
|
public interface IBD_MaterialDAL
|
{
|
|
void GetMaterialRecordBySearch();
|
void GetMaterialById(long materialId);
|
string GetMaterialNameByNumber(string number);
|
}
|
}
|