Ejemplo n.º 1
0
 public static int EditDepot(Depots dp)
 {
     return(DepotsDAL.EditDepot(dp));
 }
Ejemplo n.º 2
0
 public static int DelDepots(string id)
 {
     return(DepotsDAL.DelDepots(id));
 }
Ejemplo n.º 3
0
 public static List <Depots> GetAllPage(int PageIndex, int PageSize)
 {
     return(DepotsDAL.GetAllPage(PageIndex, PageSize));
 }
Ejemplo n.º 4
0
 public static int AddDepots(Depots dep)
 {
     return(DepotsDAL.AddDepots(dep));
 }
Ejemplo n.º 5
0
 /// <summary>
 /// 查询所有的仓库信息
 /// </summary>
 /// <returns></returns>
 public static List <Depots> GetAll()
 {
     return(DepotsDAL.GetAll());
 }