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