Ejemplo n.º 1
0
 public void DeleteLine(int lineID)
 {
     try
     {
         dl.DeleteLine(lineID);
         dl.DeleteLineStationBy(st => st.LineId == lineID);
     }
     catch (DO.BadLineCodeException)
     {
         throw new BO.BadLineCodeException(lineID);
     }
 }