Exemplo n.º 1
0
 public void ObtenerDatosFuncion(ref Funcion objFuncion, ref string Verificador)
 {
     try
     {
         CD_Funcion CDFuncion = new CD_Funcion();
         CDFuncion.ObtenerDatosFuncion(ref objFuncion, ref Verificador);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Exemplo n.º 2
0
 public void Eliminar(Funcion objFuncion, ref string Verificador)
 {
     try
     {
         CD_Funcion CDFuncion = new CD_Funcion();
         CDFuncion.EliminarFuncion(objFuncion, ref Verificador);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Exemplo n.º 3
0
 public void FuncionGrid(ref Funcion objFuncion, ref List <Funcion> List)
 {
     try
     {
         CD_Funcion CD_Funcion = new CD_Funcion();
         CD_Funcion.FuncionGrid(ref objFuncion, ref List);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }