public bool eliminarTipoProducto(int id, string schema) { try { return(TipoProductoDAO.getInstance().eliminarTipoProducto(id, schema)); } catch (Exception e) { throw e; } }
public string nuevoTipoProducto(string nombre, string schema) { try { return(TipoProductoDAO.getInstance().nuevoTipoProducto(nombre, schema)); } catch (Exception e) { throw e; } }
public bool updateTipoProducto(int id, string nombre, string schema) { try { return(TipoProductoDAO.getInstance().updateTipoProducto(id, nombre, schema)); } catch (Exception e) { throw e; } }
public List <TipoProducto> listaTiposProductos(string schema) { try { return(TipoProductoDAO.getInstance().listaTiposProductos(schema)); } catch (Exception e) { throw e; } }