コード例 #1
0
ファイル: DepotsBLL.cs プロジェクト: alexit2013/PSS
 public static int EditDepot(Depots dp)
 {
     return(DepotsDAL.EditDepot(dp));
 }
コード例 #2
0
ファイル: DepotsBLL.cs プロジェクト: alexit2013/PSS
 public static int DelDepots(string id)
 {
     return(DepotsDAL.DelDepots(id));
 }
コード例 #3
0
ファイル: DepotsBLL.cs プロジェクト: alexit2013/PSS
 public static List <Depots> GetAllPage(int PageIndex, int PageSize)
 {
     return(DepotsDAL.GetAllPage(PageIndex, PageSize));
 }
コード例 #4
0
ファイル: DepotsBLL.cs プロジェクト: alexit2013/PSS
 public static int AddDepots(Depots dep)
 {
     return(DepotsDAL.AddDepots(dep));
 }
コード例 #5
0
ファイル: DepotsBLL.cs プロジェクト: alexit2013/PSS
 /// <summary>
 /// 查询所有的仓库信息
 /// </summary>
 /// <returns></returns>
 public static List <Depots> GetAll()
 {
     return(DepotsDAL.GetAll());
 }