Example #1
0
 public List <ShelfDef> LoadShelfByZoneID(string zone_id)
 {
     try
     {
         using (DBConnection_EF con = DBConnection_EF.GetUContext())
         {
             return(shelfdefDao.LoadShelfDefByZoneID(con, zone_id));
         }
     }
     catch (Exception ex)
     {
         logger.Error(ex, "Exception");
         return(null);
     }
 }