Ejemplo n.º 1
0
 public string nuevaTela(string nombre, string schema)
 {
     try
     {
         return(TelaDAO.getInstance().nuevaTela(nombre, schema));
     }
     catch (Exception e)
     {
         throw e;
     }
 }
Ejemplo n.º 2
0
 public bool eliminarTela(int id, string nombre, string schema)
 {
     try
     {
         return(TelaDAO.getInstance().eliminarTela(id, nombre, schema));
     }
     catch (Exception e)
     {
         throw e;
     }
 }
Ejemplo n.º 3
0
 public List <Tela> listaTelas(string schema)
 {
     try
     {
         return(TelaDAO.getInstance().listaTelas(schema));
     }
     catch (Exception e)
     {
         throw e;
     }
 }