public void Elimina(SustitucionBE pItem)
 {
     try
     {
         SustitucionDL Sustitucion = new SustitucionDL();
         Sustitucion.Elimina(pItem);
     }
     catch (Exception ex)
     { throw ex; }
 }
 public void Actualiza(SustitucionBE pItem)
 {
     try
     {
         SustitucionDL Sustitucion = new SustitucionDL();
         Sustitucion.Actualiza(pItem);
     }
     catch (Exception ex)
     { throw ex; }
 }
 public List <SustitucionBE> ListaCombo(int IdEmpresa)
 {
     try
     {
         SustitucionDL Sustitucion = new SustitucionDL();
         return(Sustitucion.ListaCombo(IdEmpresa));
     }
     catch (Exception ex)
     { throw ex; }
 }
 public SustitucionBE Selecciona(int IdSustitucion)
 {
     try
     {
         SustitucionDL Sustitucion = new SustitucionDL();
         SustitucionBE objEmp      = Sustitucion.Selecciona(IdSustitucion);
         return(objEmp);
     }
     catch (Exception ex)
     { throw ex; }
 }