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