Exemplo n.º 1
0
 public string nuevoTalle(string nombre, string schema)
 {
     try
     {
         return(TalleDAO.getInstance().nuevoTalle(nombre, schema));
     }
     catch (Exception e)
     {
         throw e;
     }
 }
Exemplo n.º 2
0
 public bool eliminarTalle(int id, string nombre, string schema)
 {
     try
     {
         return(TalleDAO.getInstance().eliminarTalle(id, nombre, schema));
     }
     catch (Exception e)
     {
         throw e;
     }
 }
Exemplo n.º 3
0
 public List <Talle> listaTalles(string schema)
 {
     try
     {
         return(TalleDAO.getInstance().listaTalles(schema));
     }
     catch (Exception e)
     {
         throw e;
     }
 }