Beispiel #1
0
 public void Elimina(TratamientoBE pItem)
 {
     try
     {
         TratamientoDL Tratamiento = new TratamientoDL();
         Tratamiento.Elimina(pItem);
     }
     catch (Exception ex)
     { throw ex; }
 }
Beispiel #2
0
 public void Actualiza(TratamientoBE pItem)
 {
     try
     {
         TratamientoDL Tratamiento = new TratamientoDL();
         Tratamiento.Actualiza(pItem);
     }
     catch (Exception ex)
     { throw ex; }
 }
Beispiel #3
0
 public List <TratamientoBE> ListaCombo(int IdEmpresa)
 {
     try
     {
         TratamientoDL Tratamiento = new TratamientoDL();
         return(Tratamiento.ListaCombo(IdEmpresa));
     }
     catch (Exception ex)
     { throw ex; }
 }
Beispiel #4
0
 public TratamientoBE Selecciona(int IdTratamiento)
 {
     try
     {
         TratamientoDL Tratamiento = new TratamientoDL();
         TratamientoBE objEmp      = Tratamiento.Selecciona(IdTratamiento);
         return(objEmp);
     }
     catch (Exception ex)
     { throw ex; }
 }